summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-07-31 15:11:03 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-07-31 15:11:03 +0000
commit957bf22879228fdd64eade39585855c7ba63c6cd (patch)
treea2185238cd3352b29f164f7d2e52ef82ba0fe616
parent4222f6ce0d9bf19af0325d273b247127b6a3ef67 (diff)
downloadrockbox-957bf22879228fdd64eade39585855c7ba63c6cd.tar.gz
rockbox-957bf22879228fdd64eade39585855c7ba63c6cd.zip
Prevent simulator SDL audio skipping under OS X (FS#5748 by Emanuel
Zephir). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10384 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--docs/CREDITS1
-rw-r--r--uisimulator/sdl/lcd-sdl.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/docs/CREDITS b/docs/CREDITS
index 269c558c30..d54d548121 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -218,3 +218,4 @@ Rainer Sinsch
218Plácido Revilla 218Plácido Revilla
219Michael Sevakis 219Michael Sevakis
220Lukas Sabota 220Lukas Sabota
221Emanuel Zephir
diff --git a/uisimulator/sdl/lcd-sdl.c b/uisimulator/sdl/lcd-sdl.c
index be10b468cb..981655a32c 100644
--- a/uisimulator/sdl/lcd-sdl.c
+++ b/uisimulator/sdl/lcd-sdl.c
@@ -75,7 +75,6 @@ void sdl_gui_update(SDL_Surface *surface, int x_start, int y_start, int width,
75 xmax * display_zoom, ymax * display_zoom}; 75 xmax * display_zoom, ymax * display_zoom};
76 76
77 SDL_BlitSurface(surface, &src, gui_surface, &dest); 77 SDL_BlitSurface(surface, &src, gui_surface, &dest);
78 SDL_UpdateRect(gui_surface, dest.x, dest.y, dest.w, dest.h);
79 SDL_Flip(gui_surface); 78 SDL_Flip(gui_surface);
80} 79}
81 80