Changeset 62817 in vbox for trunk/src/VBox/Frontends/VBoxSDL/VBoxSDLTest.cpp
- Timestamp:
- Aug 1, 2016 1:05:49 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDLTest.cpp
r62493 r62817 18 18 */ 19 19 20 #ifdef _MSC_VER 21 # pragma warning(push) 22 # pragma warning(disable:4121) 23 #endif 20 24 #if defined(RT_OS_WINDOWS) ///@todo someone please explain why we don't follow the book! 21 25 # define _SDL_main_h 22 26 #endif 23 27 #include <SDL.h> 28 #ifdef _MSC_VER 29 # pragma warning(pop) 30 #endif 24 31 25 32 #include <iprt/assert.h> … … 244 251 { 245 252 /* no restriction */ 246 guMaxScreenWidth = ~0 ;247 guMaxScreenHeight = ~0 ;253 guMaxScreenWidth = ~0U; 254 guMaxScreenHeight = ~0U; 248 255 } 249 256
Note:
See TracChangeset
for help on using the changeset viewer.