BACKENDS: Add kFeatureNativeFileBowserDialog

This commit is contained in:
Thierry Crozat 2018-12-16 15:03:27 +00:00
parent d320c36e58
commit 319b90fb21
3 changed files with 18 additions and 1 deletions

View file

@ -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);
}