mirror of
https://github.com/libretro/RetroArch
synced 2025-04-07 13:23:32 +00:00
(Win32) Buildfix
This commit is contained in:
parent
0dce6479c1
commit
92f68fd614
@ -267,9 +267,9 @@ bool win32_window_create(void *data, unsigned style,
|
|||||||
driver_t *driver = driver_get_ptr();
|
driver_t *driver = driver_get_ptr();
|
||||||
g_hwnd = CreateWindowEx(0, "RetroArch", "RetroArch",
|
g_hwnd = CreateWindowEx(0, "RetroArch", "RetroArch",
|
||||||
style,
|
style,
|
||||||
info->fullscreen ? mon_rect.left : g_pos_x,
|
fullscreen ? mon_rect->left : g_pos_x,
|
||||||
info->fullscreen ? mon_rect.top : g_pos_y,
|
fullscreen ? mon_rect->top : g_pos_y,
|
||||||
win_width, win_height,
|
width, height,
|
||||||
NULL, NULL, NULL, data);
|
NULL, NULL, NULL, data);
|
||||||
if (!g_hwnd)
|
if (!g_hwnd)
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user