Changeset 2962 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 31, 2007 1:17:41 PM (18 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxSDL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
r614 r2962 126 126 /* On some X servers the mouse is stuck inside the bottom right corner. 127 127 * See http://wiki.clug.org.za/wiki/QEMU_mouse_not_working */ 128 putenv("SDL_VIDEO_X11_DGAMOUSE=0");128 setenv("SDL_VIDEO_X11_DGAMOUSE", "0", 1); 129 129 #endif 130 130 rc = SDL_InitSubSystem(SDL_INIT_VIDEO | SDL_INIT_TIMER | SDL_INIT_NOPARACHUTE); -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDLTest.cpp
r613 r2962 103 103 _putenv("SDL_VIDEO_WINDOW_POS=0,0"); 104 104 #else 105 putenv("SDL_VIDEO_WINDOW_POS=0,0");105 setenv("SDL_VIDEO_WINDOW_POS", "0,0", 1); 106 106 #endif 107 107
Note:
See TracChangeset
for help on using the changeset viewer.