aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelupus <elupus@svn>2009-12-03 20:05:10 +0000
committerelupus <elupus@svn>2009-12-03 20:05:10 +0000
commit74a75702a316fba3cf77a7423cb54d8c0dea6ab6 (patch)
tree2880d8229933b3edd30b4e1efc789fbca39433c9
parentbf3c4dac7a28d461bfdbade5afcfc3beb86ac4ae (diff)
Revert "changed: if we timed out waiting for a frame, we should not be reducing framecount, could confuse rendererer"
Caused problems with non fullscreen git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@25260 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r--xbmc/Application.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp
index 1cb4b74ffa..d99efa89af 100644
--- a/xbmc/Application.cpp
+++ b/xbmc/Application.cpp
@@ -2215,7 +2215,7 @@ void CApplication::Render()
#ifdef HAS_SDL
SDL_mutexP(m_frameMutex);
- if(m_frameCount > 0 && m_bPresentFrame)
+ if(m_frameCount > 0)
m_frameCount--;
SDL_mutexV(m_frameMutex);
SDL_CondBroadcast(m_frameCond);