aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorThierry Crozat2017-04-24 01:28:50 +0100
committerThierry Crozat2017-04-24 01:28:50 +0100
commita1dab31c08a38d8e023377e84d9122f0309ee921 (patch)
tree9a44dd7642609f6505158d39248fa65dbf8cf5f9 /backends/platform
parent23987cc724df6a96cd823c03ddb26bd818794dd2 (diff)
downloadscummvm-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.cpp2
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;
}