diff options
Diffstat (limited to 'src/openglgraphics.cpp')
-rw-r--r-- | src/openglgraphics.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp index 9de59f79..1e8918cb 100644 --- a/src/openglgraphics.cpp +++ b/src/openglgraphics.cpp @@ -37,8 +37,6 @@ #include "resources/image.h" -extern volatile int framesToDraw; - OpenGLGraphics::OpenGLGraphics(): mAlpha(false), mTexture(false), mColorAlpha(false) { @@ -108,15 +106,6 @@ void OpenGLGraphics::updateScreen() glFlush(); glFinish(); SDL_GL_SwapBuffers(); - - // Decrement frame counter when using framerate limiting - if (framesToDraw > 1) framesToDraw--; - - // Wait while we're not allowed to draw next frame yet - while (framesToDraw == 1) - { - SDL_Delay(10); - } } void OpenGLGraphics::_beginDraw() |