From 09b188ac29717b8445df22ee3ee352db12c3c79d Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 3 Sep 2019 00:11:57 +0100 Subject: [PATCH] Add a bugfix for a bizarre function call --- src/Sound.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Sound.cpp b/src/Sound.cpp index 30da484d..faf7131a 100644 --- a/src/Sound.cpp +++ b/src/Sound.cpp @@ -41,7 +41,10 @@ BOOL InitDirectSound(HWND hwnd) if (DirectSoundCreate(NULL, &lpDS, NULL) != DS_OK) { lpDS = NULL; +#ifndef FIX_BUGS + // This makes absolutely no sense here StartOrganya(lpDS, "Org\\Wave.dat"); +#endif return FALSE; }