mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Change win32_browser function
This commit is contained in:
parent
a41f33fb63
commit
d830ad38af
@ -44,10 +44,10 @@ static bool win32_browser(HWND owner, char *filename, const char *extensions,
|
||||
ofn.nMaxFile = PATH_MAX;
|
||||
ofn.Flags = OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
|
||||
|
||||
if (GetOpenFileName(&ofn))
|
||||
return true;
|
||||
if (!GetOpenFileName(&ofn))
|
||||
return false;
|
||||
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
LRESULT win32_menu_loop(HWND owner, WPARAM wparam)
|
||||
|
Loading…
x
Reference in New Issue
Block a user