aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl
diff options
context:
space:
mode:
authorThierry Crozat2018-12-17 23:04:22 +0000
committerThierry Crozat2018-12-17 23:06:07 +0000
commit56d1305f9d50ded07bfc866f3bda0f673e423c88 (patch)
tree2e49cec273cdf33dab9e51fd3986ba908ad820e8 /backends/platform/sdl
parent367a205cd5c7f9be955c016b6bfb8221b0ac9414 (diff)
downloadscummvm-rg350-56d1305f9d50ded07bfc866f3bda0f673e423c88.tar.gz
scummvm-rg350-56d1305f9d50ded07bfc866f3bda0f673e423c88.tar.bz2
scummvm-rg350-56d1305f9d50ded07bfc866f3bda0f673e423c88.zip
COMMON: Rename enum variable for native browser feature
There was a typo in the name (missing 'r' in browser).
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r--backends/platform/sdl/macosx/macosx.cpp2
-rw-r--r--backends/platform/sdl/win32/win32.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/sdl/macosx/macosx.cpp b/backends/platform/sdl/macosx/macosx.cpp
index b58255c271..ae9203fd45 100644
--- a/backends/platform/sdl/macosx/macosx.cpp
+++ b/backends/platform/sdl/macosx/macosx.cpp
@@ -112,7 +112,7 @@ bool OSystem_MacOSX::hasFeature(Feature f) {
return true;
#ifdef USE_SYSDIALOGS
- if (f == kFeatureNativeFileBowserDialog)
+ if (f == kFeatureSystemBrowserDialog)
return true;
#endif
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp
index e837bbae03..93159a7d7e 100644
--- a/backends/platform/sdl/win32/win32.cpp
+++ b/backends/platform/sdl/win32/win32.cpp
@@ -109,7 +109,7 @@ bool OSystem_Win32::hasFeature(Feature f) {
return true;
#ifdef USE_SYSDIALOGS
- if (f == kFeatureNativeFileBowserDialog)
+ if (f == kFeatureSystemBrowserDialog)
return true;
#endif