From 91b43c230c72db19739011707b8962d791da3a34 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Thu, 4 Jul 2024 15:49:14 -0700 Subject: [PATCH] fix --- ISLE/isleapp.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ISLE/isleapp.h b/ISLE/isleapp.h index 9fcd5df6..6a8289ce 100644 --- a/ISLE/isleapp.h +++ b/ISLE/isleapp.h @@ -36,15 +36,15 @@ class IsleApp { void Tick(BOOL sleepIfNotNextFrame); void SetupCursor(WPARAM wParam); - inline HWND GetWindowHandle() { return m_windowHandle; } - inline MxLong GetFrameDelta() { return m_frameDelta; } - inline BOOL GetFullScreen() { return m_fullScreen; } - inline HCURSOR GetCursorCurrent() { return m_cursorCurrent; } - inline HCURSOR GetCursorBusy() { return m_cursorBusy; } - inline HCURSOR GetCursorNo() { return m_cursorNo; } - inline BOOL GetDrawCursor() { return m_drawCursor; } + HWND GetWindowHandle() { return m_windowHandle; } + MxLong GetFrameDelta() { return m_frameDelta; } + BOOL GetFullScreen() { return m_fullScreen; } + HCURSOR GetCursorCurrent() { return m_cursorCurrent; } + HCURSOR GetCursorBusy() { return m_cursorBusy; } + HCURSOR GetCursorNo() { return m_cursorNo; } + BOOL GetDrawCursor() { return m_drawCursor; } - inline void SetWindowActive(BOOL p_windowActive) { m_windowActive = p_windowActive; } + void SetWindowActive(BOOL p_windowActive) { m_windowActive = p_windowActive; } private: LPSTR m_hdPath; // 0x00