From 2c6aeb8b824c8983358f755bcf157f1bb2e9e7ee Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Mon, 19 Jun 2023 01:12:12 -0700 Subject: [PATCH] oops forgot the calls too --- ISLE/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ISLE/main.cpp b/ISLE/main.cpp index dd48e97e..4b27d8e3 100644 --- a/ISLE/main.cpp +++ b/ISLE/main.cpp @@ -35,14 +35,14 @@ BOOL StartDirectSound(void) int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) { // Look for another instance, if we find one, bring it to the foreground instead - if (!findExistingInstance()) { + if (!FindExistingInstance()) { return 0; } // Attempt to create DirectSound instance BOOL soundReady = FALSE; for (int i = 0; i < 20; i++) { - if (startDirectSound()) { + if (StartDirectSound()) { soundReady = TRUE; break; }