[Scummvm-git-logs] scummvm master -> 37e74af914a10b025a59bb2725518b96fb2a81ba

antoniou79 noreply at scummvm.org
Wed Mar 2 13:19:49 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
37e74af914 GUI: Fix missing parentheses causing build failure


Commit: 37e74af914a10b025a59bb2725518b96fb2a81ba
    https://github.com/scummvm/scummvm/commit/37e74af914a10b025a59bb2725518b96fb2a81ba
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2022-03-02T15:19:09+02:00

Commit Message:
GUI: Fix missing parentheses causing build failure

Changed paths:
    gui/browser.cpp


diff --git a/gui/browser.cpp b/gui/browser.cpp
index 56689cab004..89c5c1fcfd5 100644
--- a/gui/browser.cpp
+++ b/gui/browser.cpp
@@ -116,7 +116,7 @@ void BrowserDialog::open() {
 	}
 	_node = Common::FSNode(blPath);
 #else
-	if (ConfMan.hasKey("browser_lastpath")
+	if (ConfMan.hasKey("browser_lastpath"))
 		_node = Common::FSNode(ConfMan.get("browser_lastpath"));
 #endif
 




More information about the Scummvm-git-logs mailing list