mirror of https://github.com/stella-emu/stella.git
Fix uninitialized value.
This commit is contained in:
parent
4fd2c71510
commit
34810ab25e
|
@ -39,6 +39,7 @@ void Ball::reset()
|
||||||
myEnabledOld = false;
|
myEnabledOld = false;
|
||||||
myEnabledNew = false;
|
myEnabledNew = false;
|
||||||
myEnabled = false;
|
myEnabled = false;
|
||||||
|
myIsDelaying = false;
|
||||||
myHmmClocks = 0;
|
myHmmClocks = 0;
|
||||||
myCounter = 0;
|
myCounter = 0;
|
||||||
myIsMoving = false;
|
myIsMoving = false;
|
||||||
|
|
Loading…
Reference in New Issue