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
This commit is contained in:
stephena 2008-12-15 17:53:01 +00:00
parent 54b54aabd6
commit cb8d35044a
1 changed files with 3 additions and 6 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // 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 #ifdef DISPLAY_OPENGL
@ -451,11 +451,8 @@ void FrameBufferGL::drawMediaSource()
} }
// And blit the surface // And blit the surface
if(myDirtyFlag) myTiaSurface->addDirtyRect(0, 0, 0, 0);
{ myTiaSurface->update();
myTiaSurface->addDirtyRect(0, 0, 0, 0);
myTiaSurface->update();
}
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -