Changeset 7125 in vbox for trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
- Timestamp:
- Feb 25, 2008 4:27:22 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28377
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r7100 r7125 187 187 #ifdef VBOXSDL_WITH_X11 188 188 static Cursor gpDefaultOrigX11Cursor; 189 static BOOL useEvdevKeymap = FALSE;189 static BOOL guseEvdevKeymap = FALSE; 190 190 #endif 191 191 static SDL_Cursor *gpCustomCursor = NULL; … … 1165 1165 else if (strcmp(argv[curArg], "-evdevkeymap") == 0) 1166 1166 { 1167 useEvdevKeymap = TRUE;1167 guseEvdevKeymap = TRUE; 1168 1168 } 1169 1169 #endif /* RT_OS_LINUX */ … … 2944 2944 keycode -= 8; 2945 2945 } 2946 else if (keycode < 158 && useEvdevKeymap)2946 else if (keycode < 158 && guseEvdevKeymap) 2947 2947 { 2948 2948 // apply EVDEV conversion table
Note:
See TracChangeset
for help on using the changeset viewer.