PETKA: Init class variables. CID 1429743

This commit is contained in:
Eugene Sandulenko 2022-10-24 11:08:10 +02:00
parent eb752bf109
commit 8f2c6b0bac
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -46,7 +46,8 @@ namespace Petka {
QSystem::QSystem(PetkaEngine &vm)
: _vm(vm), _mainInterface(nullptr), _currInterface(nullptr), _prevInterface(nullptr),
_totalInit(false), _sceneWidth(640), _room(nullptr), _xOffset(0), _reqOffset(0) {}
_totalInit(false), _sceneWidth(640), _room(nullptr), _xOffset(0), _reqOffset(0),
_fxId(0), _musicId(0) {}
QSystem::~QSystem() {
for (uint i = 0; i < _allObjects.size(); ++i) {