- Exhumed: Partially restore sound issues following cc5e6d19c3.

* Restored call of `UpdateSounds()` to `GameLoop()` and not `DrawView()` like previously.

Partially addresses #253.
This commit is contained in:
Mitchell Richters 2020-08-26 23:22:44 +10:00
parent 62388e30be
commit 60f334f57c

View file

@ -253,6 +253,7 @@ void GameLoop()
CheckKeys();
GameTicker();
PlayerInterruptKeys();
UpdateSounds();
CheckKeys2();
}