Changeset 4554 in vbox for trunk/src/VBox
- Timestamp:
- Sep 5, 2007 11:58:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp
r4071 r4554 410 410 } 411 411 412 #if defined(RT_OS_DARWIN) 412 #if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS) 413 413 /** 414 414 * Fallback keycode conversion using SDL symbols. … … 585 585 keycode = ev->keysym.scancode; 586 586 587 #ifdef VBOXBFE_WITH_X11 /// @todo verify that these are X11 issues and not unique linux issues. 587 #if defined(VBOXBFE_WITH_X11) && !defined(RT_OS_SOLARIS) /// @todo verify that these are X11 issues and not unique linux issues. 588 // -> doesn't seem to work on solaris... 588 589 // workaround for SDL keyboard translation issues on X11 589 590 static const uint8_t x_keycode_to_pc_keycode[61] = … … 844 845 #endif 845 846 847 #elif defined(RT_OS_SOLARIS) 848 /* 849 * For now, just use the fallback code. 850 */ 851 keycode = Keyevent2KeycodeFallback(ev); 846 852 #endif 847 853 return keycode;
Note:
See TracChangeset
for help on using the changeset viewer.