Fix build fail derp
This commit is contained in:
parent
b9f0cb1116
commit
2dc4f87995
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
#include "../../ui_companion_driver.h"
|
#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 = {};
|
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)
|
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)
|
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 = {
|
const ui_browser_window_t ui_browser_window_win32 = {
|
||||||
|
|
Loading…
Reference in New Issue