mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DolphinNoGUI: Make parameters constant
This commit is contained in:
@ -165,7 +165,8 @@ void PlatformWin32::ProcessEvents()
|
||||
}
|
||||
}
|
||||
|
||||
LRESULT PlatformWin32::WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||
LRESULT PlatformWin32::WndProc(const HWND hwnd, const UINT msg, const WPARAM wParam,
|
||||
const LPARAM lParam)
|
||||
{
|
||||
PlatformWin32* platform = reinterpret_cast<PlatformWin32*>(GetWindowLongPtr(hwnd, GWLP_USERDATA));
|
||||
switch (msg)
|
||||
|
Reference in New Issue
Block a user