From 3d9a96995a395d91fef3c8452dd15b77e8ef5174 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Sun, 18 Jun 2023 23:22:32 -0700 Subject: [PATCH] isle: convert last two functions to PascalCase --- ISLE/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ISLE/main.cpp b/ISLE/main.cpp index be56225c..dd48e97e 100644 --- a/ISLE/main.cpp +++ b/ISLE/main.cpp @@ -6,7 +6,7 @@ #include "legoomni.h" // OFFSET: ISLE 0x401ca0 -BOOL findExistingInstance(void) +BOOL FindExistingInstance(void) { HWND hWnd = FindWindowA(WNDCLASS_NAME, WINDOW_TITLE); if (hWnd) { @@ -19,7 +19,7 @@ BOOL findExistingInstance(void) } // OFFSET: ISLE 0x401ce0 -BOOL startDirectSound(void) +BOOL StartDirectSound(void) { LPDIRECTSOUND lpDS = NULL; HRESULT ret = DirectSoundCreate(NULL, &lpDS, NULL);