(Win32) Buildfix

This commit is contained in:
twinaphex 2015-11-12 02:53:01 +01:00
parent 0dce6479c1
commit 92f68fd614

View File

@ -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;