Skip to content

Commit

Permalink
Fix entering number 8 in save view
Browse files Browse the repository at this point in the history
  • Loading branch information
Drombeys committed Nov 15, 2024
1 parent 56d4a97 commit 2eff4e1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/xrEngine/line_edit_control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ void line_edit_control::assign_char_pairs(init_mode mode) {
create_char_pair(SDL_SCANCODE_5, '5', '%');
create_char_pair(SDL_SCANCODE_6, '6', '^');
create_char_pair(SDL_SCANCODE_7, '7', '&');
create_char_pair(SDL_SCANCODE_8, '8', '*');
create_char_pair(SDL_SCANCODE_9, '9', '(');

for (int i = 0; i < 26; ++i) {
Expand Down

0 comments on commit 2eff4e1

Please sign in to comment.