From cb8d35044afd2fc586669a4e48d3bf0a0ac9ffb3 Mon Sep 17 00:00:00 2001 From: stephena Date: Mon, 15 Dec 2008 17:53:01 +0000 Subject: [PATCH] Oops, this is a little too agressive with the optimizations. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1565 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/common/FrameBufferGL.cxx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/stella/src/common/FrameBufferGL.cxx b/stella/src/common/FrameBufferGL.cxx index 09c5fd297..969b6e8b9 100644 --- a/stella/src/common/FrameBufferGL.cxx +++ b/stella/src/common/FrameBufferGL.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: FrameBufferGL.cxx,v 1.117 2008-12-15 00:20:11 stephena Exp $ +// $Id: FrameBufferGL.cxx,v 1.118 2008-12-15 17:53:01 stephena Exp $ //============================================================================ #ifdef DISPLAY_OPENGL @@ -451,11 +451,8 @@ void FrameBufferGL::drawMediaSource() } // And blit the surface - if(myDirtyFlag) - { - myTiaSurface->addDirtyRect(0, 0, 0, 0); - myTiaSurface->update(); - } + myTiaSurface->addDirtyRect(0, 0, 0, 0); + myTiaSurface->update(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -