mirror of https://github.com/stella-emu/stella.git
avoid full update when window gets exposed (test)
This commit is contained in:
parent
56f8af1d8f
commit
d627acb408
|
@ -323,7 +323,8 @@ void EventHandler::handleSystemEvent(SystemEvent e, int, int)
|
|||
{
|
||||
case SystemEvent::WINDOW_EXPOSED:
|
||||
case SystemEvent::WINDOW_RESIZED:
|
||||
myOSystem.frameBuffer().update(true); // force full update
|
||||
//myOSystem.frameBuffer().update(true); // force full update
|
||||
myOSystem.frameBuffer().update();
|
||||
break;
|
||||
#ifdef BSPF_UNIX
|
||||
case SystemEvent::WINDOW_FOCUS_GAINED:
|
||||
|
|
Loading…
Reference in New Issue