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
This commit is contained in:
Miika Pekkarinen 2006-07-31 15:11:03 +00:00
parent 4222f6ce0d
commit 957bf22879
2 changed files with 1 additions and 1 deletions

View file

@ -218,3 +218,4 @@ Rainer Sinsch
Plácido Revilla
Michael Sevakis
Lukas Sabota
Emanuel Zephir

View file

@ -75,7 +75,6 @@ void sdl_gui_update(SDL_Surface *surface, int x_start, int y_start, int width,
xmax * display_zoom, ymax * display_zoom};
SDL_BlitSurface(surface, &src, gui_surface, &dest);
SDL_UpdateRect(gui_surface, dest.x, dest.y, dest.w, dest.h);
SDL_Flip(gui_surface);
}