From 60f334f57c1c6872c2d0637b5100fe24ad5bf919 Mon Sep 17 00:00:00 2001
From: Mitchell Richters <mjr4077au@gmail.com>
Date: Wed, 26 Aug 2020 23:22:44 +1000
Subject: [PATCH] - Exhumed: Partially restore sound issues following
 cc5e6d19c3a16544cbd13922c19e06da18224754.

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

Partially addresses #253.
---
 source/exhumed/src/gameloop.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/source/exhumed/src/gameloop.cpp b/source/exhumed/src/gameloop.cpp
index b9a937eba..81166fd51 100644
--- a/source/exhumed/src/gameloop.cpp
+++ b/source/exhumed/src/gameloop.cpp
@@ -253,6 +253,7 @@ void GameLoop()
     CheckKeys();
     GameTicker();
     PlayerInterruptKeys();
+    UpdateSounds();
     CheckKeys2();
 }