diff -r 96b4b92b86ae -r 9c3129cb019b src/video/sdl_v.cpp --- a/src/video/sdl_v.cpp Wed Jan 10 18:44:52 2007 +0000 +++ b/src/video/sdl_v.cpp Wed Jan 10 18:56:51 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();