From a1dab31c08a38d8e023377e84d9122f0309ee921 Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Mon, 24 Apr 2017 01:28:50 +0100 Subject: WIN32: Fix compilation of getScreenshotPath (missing parenthesis) --- backends/platform/sdl/win32/win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/platform') 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; } -- cgit v1.2.3