From f8028922773338851e7e98dd27cb57325d23b972 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Wed, 17 Mar 2021 22:39:02 -0500 Subject: [PATCH] Update ScriptSystem.h Fix capitalization and add newline --- Source/Project64/UserInterface/Debugger/ScriptSystem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Project64/UserInterface/Debugger/ScriptSystem.h b/Source/Project64/UserInterface/Debugger/ScriptSystem.h index db661d0a1..ef764bc7e 100644 --- a/Source/Project64/UserInterface/Debugger/ScriptSystem.h +++ b/Source/Project64/UserInterface/Debugger/ScriptSystem.h @@ -49,7 +49,7 @@ private: CriticalSection m_CS; - void RegisterHook(const char* hookId, CScriptHook* cbList); // associate string id with callback list + void RegisterHook(const char* hookId, CScriptHook* cbList); // Associate string ID with callback list void UnregisterHooks(); HDC m_ScreenDC; @@ -133,4 +133,4 @@ public: { return m_HookFrameDrawn; } -}; \ No newline at end of file +};