Skip to content

Commit

Permalink
3.1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
FrodeSolheim committed Dec 5, 2021
1 parent 74bea84 commit 596d803
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion BASEVERSION.FS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.42
3.1.64
4 changes: 4 additions & 0 deletions libfsemu/src/ml/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ int fs_ml_post_event(fs_ml_event* event)

char *fs_ml_input_fix_joystick_name(const char *name, int upper)
{
if (name == NULL) {
return g_strdup("NULL");
}

char *n, *temp;
n = g_strdup(name);
g_strstrip(n);
Expand Down

0 comments on commit 596d803

Please sign in to comment.