diff options
Diffstat (limited to 'backends/platform/sdl/win32/win32.cpp')
-rw-r--r-- | backends/platform/sdl/win32/win32.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp index 2a80508881..264a0640ed 100644 --- a/backends/platform/sdl/win32/win32.cpp +++ b/backends/platform/sdl/win32/win32.cpp @@ -109,6 +109,11 @@ bool OSystem_Win32::hasFeature(Feature f) { if (f == kFeatureDisplayLogFile || f == kFeatureOpenUrl) return true; +#ifdef USE_SYSDIALOGS + if (f == kFeatureNativeFileBowserDialog) + return true; +#endif + return OSystem_SDL::hasFeature(f); } |