src/video/sdl_v.cpp
branchcustombridgeheads
changeset 5650 aefc131bf5ce
parent 5649 55c8267c933f
--- a/src/video/sdl_v.cpp	Thu Jan 11 13:41:16 2007 +0000
+++ b/src/video/sdl_v.cpp	Mon Jan 15 20:14:06 2007 +0000
@@ -469,7 +469,7 @@
 				(keys[SDLK_DOWN]  ? 8 : 0);
 			GameLoop();
 
-			_screen.dst_ptr = _sdl_screen->pixels;
+			_screen.dst_ptr = (Pixel*)_sdl_screen->pixels;
 			UpdateWindows();
 			if (++pal_tick > 4) {
 				CheckPaletteAnim();
@@ -478,7 +478,7 @@
 			DrawSurfaceToScreen();
 		} else {
 			SDL_CALL SDL_Delay(1);
-			_screen.dst_ptr = _sdl_screen->pixels;
+			_screen.dst_ptr = (Pixel*)_sdl_screen->pixels;
 			DrawTextMessage();
 			DrawMouseCursor();
 			DrawSurfaceToScreen();