mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 09:44:02 +00:00
Attempt to fix crash when instantiating Core alone but this is definitely not enough
This commit is contained in:
parent
0afd09dc75
commit
55689228bf
1 changed files with 2 additions and 1 deletions
|
@ -1155,7 +1155,8 @@ void Core::run(float runTime)
|
|||
if (particleManager)
|
||||
particleManager->update(dt);
|
||||
|
||||
sound->update(dt);
|
||||
if(sound)
|
||||
sound->update(dt);
|
||||
|
||||
onUpdate(dt);
|
||||
|
||||
|
|
Loading…
Reference in a new issue