diff render_sdl.c @ 356:79e4b466e7d0

Get rid of debug puts and limit based on audio rather than frame rate by default.
author Mike Pavone <pavone@retrodev.com>
date Thu, 23 May 2013 23:55:42 -0700
parents 15dd6418fe67
children 946ae3749260
line wrap: on
line diff
--- a/render_sdl.c	Thu May 23 23:51:49 2013 -0700
+++ b/render_sdl.c	Thu May 23 23:55:42 2013 -0700
@@ -419,7 +419,6 @@
 		ret = handle_event(&event);
 	}
 	if (frame_limit) {
-		puts("evil frame limit");
 		//TODO: Adjust frame delay so we actually get 60 FPS rather than 62.5 FPS
 		uint32_t current = SDL_GetTicks();
 		uint32_t desired = last_frame + frame_delay;