mirror of https://github.com/stella-emu/stella.git
Fixed regression whereby the overlay images were appearing when a snapshot
was taken. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@457 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
e6e91f3522
commit
57246c69a9
|
@ -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: FrameBuffer.hxx,v 1.36 2005-05-30 16:25:47 stephena Exp $
|
||||
// $Id: FrameBuffer.hxx,v 1.37 2005-05-31 17:57:50 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#ifndef FRAMEBUFFER_HXX
|
||||
|
@ -40,7 +40,7 @@ class OSystem;
|
|||
All GUI elements (ala ScummVM) are drawn here as well.
|
||||
|
||||
@author Stephen Anthony
|
||||
@version $Id: FrameBuffer.hxx,v 1.36 2005-05-30 16:25:47 stephena Exp $
|
||||
@version $Id: FrameBuffer.hxx,v 1.37 2005-05-31 17:57:50 stephena Exp $
|
||||
*/
|
||||
class FrameBuffer
|
||||
{
|
||||
|
@ -138,7 +138,7 @@ class FrameBuffer
|
|||
theRedrawEntireFrameIndicator = true;
|
||||
theOverlayChangedIndicator = true;
|
||||
myOverlayRedraws = 2;
|
||||
if(now) update();
|
||||
if(now) { myMessageTime = 0; update(); }
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue