diff options
author | Thierry Crozat | 2018-12-16 15:03:27 +0000 |
---|---|---|
committer | Thierry Crozat | 2018-12-16 15:58:43 +0000 |
commit | 319b90fb21f5c1e4ca9d9196b65aadb6e2529c09 (patch) | |
tree | ee31fcfb0f8bc0993c67b052806b70c7ca05be57 /backends/platform/sdl/macosx | |
parent | d320c36e588cdefac9c24a0d9743d79539f6d198 (diff) | |
download | scummvm-rg350-319b90fb21f5c1e4ca9d9196b65aadb6e2529c09.tar.gz scummvm-rg350-319b90fb21f5c1e4ca9d9196b65aadb6e2529c09.tar.bz2 scummvm-rg350-319b90fb21f5c1e4ca9d9196b65aadb6e2529c09.zip |
BACKENDS: Add kFeatureNativeFileBowserDialog
Diffstat (limited to 'backends/platform/sdl/macosx')
-rw-r--r-- | backends/platform/sdl/macosx/macosx.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/backends/platform/sdl/macosx/macosx.cpp b/backends/platform/sdl/macosx/macosx.cpp index fcfd93a93d..b58255c271 100644 --- a/backends/platform/sdl/macosx/macosx.cpp +++ b/backends/platform/sdl/macosx/macosx.cpp @@ -110,6 +110,12 @@ void OSystem_MacOSX::addSysArchivesToSearchSet(Common::SearchSet &s, int priorit bool OSystem_MacOSX::hasFeature(Feature f) { if (f == kFeatureDisplayLogFile || f == kFeatureClipboardSupport || f == kFeatureOpenUrl) return true; + +#ifdef USE_SYSDIALOGS + if (f == kFeatureNativeFileBowserDialog) + return true; +#endif + return OSystem_POSIX::hasFeature(f); } |