Skip to content

Commit

Permalink
Fix destruct default key configuration strings
Browse files Browse the repository at this point in the history
  • Loading branch information
carlreinke committed Aug 23, 2020
1 parent 50e5976 commit 822c719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/destruct.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ static void load_destruct_config( Config *config_ )
// set defaults
for (unsigned int i = 0; i < COUNTOF(defaultKeyConfig[p][k]); ++i)
if (defaultKeyConfig[p][k][i] != SDL_SCANCODE_UNKNOWN)
config_add_value(option, SDL_GetKeyName(defaultKeyConfig[p][k][i]));
config_add_value(option, SDL_GetScancodeName(defaultKeyConfig[p][k][i]));
}
}
}
Expand Down

0 comments on commit 822c719

Please sign in to comment.