mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
WIN32: Fix compilation of getScreenshotPath (missing parenthesis)
This commit is contained in:
parent
23987cc724
commit
a1dab31c08
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user