From efc881a284da1cb3f61412191097fd0694f0064d Mon Sep 17 00:00:00 2001 From: Christian Speckner Date: Sat, 21 Jan 2017 16:07:02 +0100 Subject: [PATCH] Correct slight blunder ;) --- src/emucore/tia/Player.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emucore/tia/Player.cxx b/src/emucore/tia/Player.cxx index 794cd0898..1ff6924c2 100644 --- a/src/emucore/tia/Player.cxx +++ b/src/emucore/tia/Player.cxx @@ -86,10 +86,10 @@ void Player::nusiz(uInt8 value) // This is an incomplete description of the effects seen in issues #87 and #82. More investigation // is required for a complete description (#63) - if (myIsRendering && myRenderCounter >= (8 - myWidth - 2) && oldWidth == 8 && myWidth != oldWidth) - myEffectiveWidth = 8; - else + if (myIsRendering && myRenderCounter >= (8 - myWidth / 4 - 2) && oldWidth == 8 && myWidth != oldWidth) myEffectiveWidth = oldWidth; + else + myEffectiveWidth = myWidth; if (myRenderCounter >= myEffectiveWidth) myIsRendering = false;