From 87671cb945359a0415fbdb6859657f183670d99c Mon Sep 17 00:00:00 2001 From: Piotr Doan Date: Wed, 22 Jan 2025 03:53:27 +0100 Subject: [PATCH] Const lint --- Engine/Platform/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/Platform/Window.cpp b/Engine/Platform/Window.cpp index 353d149..25d3baa 100644 --- a/Engine/Platform/Window.cpp +++ b/Engine/Platform/Window.cpp @@ -69,7 +69,7 @@ void Platform::Window::OnCloseEvent() Close(); } -void Platform::Window::OnResizeEvent(u32 width, u32 height) +void Platform::Window::OnResizeEvent(const u32 width, const u32 height) { if(m_width == width && m_height == height) return;