mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Fix build fail derp
This commit is contained in:
parent
b9f0cb1116
commit
2dc4f87995
@ -23,7 +23,7 @@
|
||||
|
||||
#include "../../ui_companion_driver.h"
|
||||
|
||||
static bool ui_browser_window_win32(ui_browser_window_state_t *state, bool save)
|
||||
static bool ui_browser_window_win32_core(ui_browser_window_state_t *state, bool save)
|
||||
{
|
||||
OPENFILENAME ofn = {};
|
||||
|
||||
@ -47,12 +47,12 @@ static bool ui_browser_window_win32(ui_browser_window_state_t *state, bool save)
|
||||
|
||||
static bool ui_browser_window_win32_open(ui_browser_window_state_t *state)
|
||||
{
|
||||
return ui_browser_window_win32(state, false);
|
||||
return ui_browser_window_win32_core(state, false);
|
||||
}
|
||||
|
||||
static bool ui_browser_window_win32_save(ui_browser_window_state_t *state)
|
||||
{
|
||||
return ui_browser_window_win32(state, true);
|
||||
return ui_browser_window_win32_core(state, true);
|
||||
}
|
||||
|
||||
const ui_browser_window_t ui_browser_window_win32 = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user