Changeset 5917 in vbox
- Timestamp:
- Dec 2, 2007 10:04:49 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxSDL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
r5107 r5917 529 529 /* are constraints set? */ 530 530 if ( ( (mMaxScreenWidth != ~(uint32_t)0) 531 && (width > mMaxScreenWidth) 531 && (width > mMaxScreenWidth)) 532 532 || ( (mMaxScreenHeight != ~(uint32_t)0) 533 && (height > mMaxScreenHeight))) )533 && (height > mMaxScreenHeight))) 534 534 { 535 535 /* nope, we don't want that (but still don't freak out if it is set) */ -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r5815 r5917 2115 2115 if ( event.type == SDL_KEYDOWN 2116 2116 && ksym != SDLK_UNKNOWN 2117 && ( enmHKeyState == HKEYSTATE_DOWN_1ST && ksym == gHostKeySym22118 || enmHKeyState == HKEYSTATE_DOWN_2ND && ksym == gHostKeySym1))2117 && ( (enmHKeyState == HKEYSTATE_DOWN_1ST && ksym == gHostKeySym2) 2118 || (enmHKeyState == HKEYSTATE_DOWN_2ND && ksym == gHostKeySym1))) 2119 2119 { 2120 2120 EvHKeyDown2 = event;
Note:
See TracChangeset
for help on using the changeset viewer.