diff options
author | Thierry Crozat | 2017-04-24 01:28:50 +0100 |
---|---|---|
committer | Thierry Crozat | 2017-04-24 01:28:50 +0100 |
commit | a1dab31c08a38d8e023377e84d9122f0309ee921 (patch) | |
tree | 9a44dd7642609f6505158d39248fa65dbf8cf5f9 /backends/platform | |
parent | 23987cc724df6a96cd823c03ddb26bd818794dd2 (diff) | |
download | scummvm-rg350-a1dab31c08a38d8e023377e84d9122f0309ee921.tar.gz scummvm-rg350-a1dab31c08a38d8e023377e84d9122f0309ee921.tar.bz2 scummvm-rg350-a1dab31c08a38d8e023377e84d9122f0309ee921.zip |
WIN32: Fix compilation of getScreenshotPath (missing parenthesis)
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/sdl/win32/win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp index a29151a47d..e09fb5e055 100644 --- a/backends/platform/sdl/win32/win32.cpp +++ b/backends/platform/sdl/win32/win32.cpp @@ -149,7 +149,7 @@ bool OSystem_Win32::openUrl(const Common::String &url) { Common::String OSystem_Win32::getScreenshotsPath() { Common::String screenshotsPath = ConfMan.get("screenshotpath"); if (!screenshotsPath.empty()) { - if (!screenshotsPath.hasSuffix("\\") && !screenshotsPath.hasSuffix("/") + if (!screenshotsPath.hasSuffix("\\") && !screenshotsPath.hasSuffix("/")) screenshotsPath += "\\"; return screenshotsPath; } |