mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-02-18 02:34:57 +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)
|
if (particleManager)
|
||||||
particleManager->update(dt);
|
particleManager->update(dt);
|
||||||
|
|
||||||
sound->update(dt);
|
if(sound)
|
||||||
|
sound->update(dt);
|
||||||
|
|
||||||
onUpdate(dt);
|
onUpdate(dt);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue