1
0
Fork 0
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:
fgenesis 2022-09-12 00:12:41 +02:00
parent 0afd09dc75
commit 55689228bf

View file

@ -1155,7 +1155,8 @@ void Core::run(float runTime)
if (particleManager)
particleManager->update(dt);
sound->update(dt);
if(sound)
sound->update(dt);
onUpdate(dt);