From aa7334503a9dfc200db38ed35cb12ac86d0fcae6 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Wed, 20 Sep 2017 19:06:19 +0000 Subject: [PATCH] Remove dangling comma. (Thanks for spotting it hail-to-the-ryzen) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4052 --- src/gui/sdl_mapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/sdl_mapper.cpp b/src/gui/sdl_mapper.cpp index c583cdf8..136e979a 100644 --- a/src/gui/sdl_mapper.cpp +++ b/src/gui/sdl_mapper.cpp @@ -354,7 +354,7 @@ static SDLKey sdlkey_map[]={ /* 4 extra keys that don't really exist, but are needed for * round-trip mapping (dosbox uses RMETA only for hotkeys, it's * not really mapped to an emulated key) */ - SDLK_RMETA, SDLK_RSHIFT, SDLK_RALT, SDLK_RCTRL, + SDLK_RMETA, SDLK_RSHIFT, SDLK_RALT, SDLK_RCTRL }; #define MAX_SCANCODES (0x80+4) /* Make sure that the table above has the expected size. This