Always trigger draw during resbl, even during hblank.

This commit is contained in:
Christian Speckner 2016-11-26 21:05:03 +01:00
parent 34810ab25e
commit d66a58557b
1 changed files with 2 additions and 4 deletions

View File

@ -66,10 +66,8 @@ void Ball::resbl(bool hblank)
{ {
myCounter = hblank ? 159 : 157; myCounter = hblank ? 159 : 157;
if (!hblank) { myIsRendering = true;
myIsRendering = true; myRenderCounter = Count::renderCounterOffset;
myRenderCounter = Count::renderCounterOffset;
}
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -