Update win32_window.cpp

Fixed Compiler errors on windows
This commit is contained in:
McMassiveNZ
2023-05-04 20:48:02 +02:00
parent d4dc5fb2f1
commit 5e0da33031

View File

@@ -45,7 +45,7 @@ public:
Win32WindowImpl& operator=(const Win32WindowImpl&) = delete; Win32WindowImpl& operator=(const Win32WindowImpl&) = delete;
bool init(WindowCreateParams params); bool init(WindowCreateParams params);
bool PumpMessages() override; void PumpMessages() override;
bool ShouldClose() override; bool ShouldClose() override;
HINSTANCE hInstance; HINSTANCE hInstance;
@@ -116,7 +116,7 @@ void Win32WindowImpl::PumpMessages()
bool Win32WindowImpl::ShouldClose() bool Win32WindowImpl::ShouldClose()
{ {
return m_close;
} }
} // namespace starter_window } // namespace starter_window