use consistent bounds checking style in hotkeys

develop
myk002 2022-11-28 15:50:05 -08:00
parent 4e7b4dc554
commit 23e467deaf
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -84,7 +84,7 @@ static void find_active_keybindings(df::viewscreen *screen, bool filtermenu) {
valid_keys.push_back(string(&c, 1));
}
for (int i = 1; i < 13; i++) {
for (int i = 1; i <= 12; i++) {
valid_keys.push_back("F" + int_to_string(i));
}