mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Replace 'reinterpret_cast' with 'static_cast'
This commit is contained in:
@ -234,7 +234,7 @@ bool GLContextWGL::Initialize(const WindowSystemInfo& wsi, bool stereo, bool cor
|
||||
return false;
|
||||
|
||||
RECT window_rect = {};
|
||||
m_window_handle = reinterpret_cast<HWND>(wsi.render_surface);
|
||||
m_window_handle = static_cast<HWND>(wsi.render_surface);
|
||||
if (!GetClientRect(m_window_handle, &window_rect))
|
||||
return false;
|
||||
|
||||
|
Reference in New Issue
Block a user