From 524943354e3403eeb089fc8d6dcd45bcdd3eaad0 Mon Sep 17 00:00:00 2001 From: Christian Speckner Date: Fri, 14 Sep 2018 00:34:21 +0200 Subject: [PATCH] Remove unnecessary frame resets. --- src/emucore/Console.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/emucore/Console.cxx b/src/emucore/Console.cxx index c937d3e93..c794690f7 100644 --- a/src/emucore/Console.cxx +++ b/src/emucore/Console.cxx @@ -716,7 +716,6 @@ void Console::changeYStart(int direction) myProperties.set(Display_YStart, val.str()); myTIA->setYStart(ystart); - myTIA->frameReset(); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -734,10 +733,8 @@ void Console::updateYStart(uInt32 ystart) if (ystart == 0) { redetectYStart(); myTIA->setYStart(myAutodetectedYstart); - myTIA->frameReset(); } else { myTIA->setYStart(ystart); - myTIA->frameReset(); myYStartAutodetected = false; } } @@ -766,7 +763,6 @@ void Console::changeHeight(int direction) return; myTIA->setHeight(height); - myTIA->frameReset(); initializeVideo(); // takes care of refreshing the screen ostringstream val;