diff options
| author | James Brown | 2002-04-13 04:11:18 +0000 |
|---|---|---|
| committer | James Brown | 2002-04-13 04:11:18 +0000 |
| commit | 44d4c1ac6082eb3c3e11217d8fecd8a2713995ca (patch) | |
| tree | c9d83acb3ebbff0bb162b8ad5271023253a175e9 | |
| parent | 087a6ed76121632ea0f1a55770082db977b26212 (diff) | |
| download | scummvm-rg350-44d4c1ac6082eb3c3e11217d8fecd8a2713995ca.tar.gz scummvm-rg350-44d4c1ac6082eb3c3e11217d8fecd8a2713995ca.tar.bz2 scummvm-rg350-44d4c1ac6082eb3c3e11217d8fecd8a2713995ca.zip | |
Remove Win32 dependency from sdl.cpp
svn-id: r3915
| -rw-r--r-- | sdl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -564,9 +564,10 @@ void OSystem_SDL::update_screen() { /* Call SDL update on the affected regions */ SDL_UpdateRects(sdl_hwscreen, num_dirty_rects, dirty_rect_list); - +#ifdef WIN32 if (GetAsyncKeyState(VK_SHIFT)<0) printf("Update area %d pixels. %d%%\n", area, (area+(320*2)/2) / (320*2)); +#endif } else { /* Call SDL update on the affected regions */ SDL_UpdateRects(sdl_hwscreen, num_dirty_rects, dirty_rect_list); |
