rnd-20000807-2-src
[rocksndiamonds.git] / src / sdl.c
index bcebf7f27b69ae86a845af2305cb26552b7f5b9f..f782961d2a509f9e43ea67d7f729ad32eca3b89f 100644 (file)
--- a/src/sdl.c
+++ b/src/sdl.c
@@ -35,7 +35,9 @@ inline void SDLCopyArea(SDL_Surface *src_surface, SDL_Surface *dst_surface,
   dst_rect.h = height;
 
   SDL_BlitSurface(src_surface, &src_rect, dst_surface, &dst_rect);
+#if 1
   SDL_UpdateRect(dst_surface, dst_x, dst_y, width, height);
+#endif
 }
 
 inline void SDLFillRectangle(SDL_Surface *surface, int x, int y,