mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-29 13:45:51 +00:00
DolphinNoGUI: Replace C-style cast with reinterpret_cast
This commit is contained in:
parent
ec1d659363
commit
f04f659710
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ bool PlatformWin32::RegisterRenderWindowClass()
|
|||
wc.hInstance = GetModuleHandle(nullptr);
|
||||
wc.hIcon = LoadIcon(nullptr, IDI_ICON1);
|
||||
wc.hCursor = LoadCursor(nullptr, IDC_ARROW);
|
||||
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
|
||||
wc.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1);
|
||||
wc.lpszMenuName = nullptr;
|
||||
wc.lpszClassName = WINDOW_CLASS_NAME;
|
||||
wc.hIconSm = LoadIcon(nullptr, IDI_ICON1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue