1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-09-01 06:20:15 +02:00

Fixed uninitialized memory.

This commit is contained in:
oz 2021-01-05 15:12:54 +03:00
parent 8b1f6f4cfa
commit d267fd5c98
5 changed files with 9 additions and 2 deletions

View file

@ -60,6 +60,7 @@ TPinballTable::TPinballTable(): TPinballComponent(nullptr, -1, false)
ReplayTimer = 0;
TiltTimeoutTimer = 0;
MultiballFlag = 0;
PlayerCount = 0;
auto ballObj = new TBall(this);
BallList->Add(ballObj);