mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
DolphinNoGUI: Make parameters constant
This commit is contained in:
parent
f04f659710
commit
2ae928ca79
2 changed files with 5 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue