Logging for paused.

This commit is contained in:
Themaister 2011-10-20 23:33:15 +02:00
parent f46ee78c76
commit c42655ed91
1 changed files with 4 additions and 6 deletions

10
ssnes.c
View File

@ -201,12 +201,10 @@ static void video_cached_frame(void)
if (g_extern.frame_cache.data) if (g_extern.frame_cache.data)
{ {
// Push the pipeline through. A hack sort of. // Push the pipeline through. A hack sort of.
for (unsigned i = 0; i < 3; i++) SSNES_LOG("Pushing cached frame.\n");
{ video_frame(g_extern.frame_cache.data,
video_frame(g_extern.frame_cache.data, g_extern.frame_cache.width,
g_extern.frame_cache.width, g_extern.frame_cache.height);
g_extern.frame_cache.height);
}
} }
#ifdef HAVE_FFMPEG #ifdef HAVE_FFMPEG