[Scummvm-git-logs] scummvm master -> c76158ef93b70e0a84e4d373972c534c4d21ee51

sev- noreply at scummvm.org
Wed Jul 24 08:46:06 UTC 2024


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:
c76158ef93 GUI: Fixed path processing in the Integrity Dialog


Commit: c76158ef93b70e0a84e4d373972c534c4d21ee51
    https://github.com/scummvm/scummvm/commit/c76158ef93b70e0a84e4d373972c534c4d21ee51
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-07-24T10:45:38+02:00

Commit Message:
GUI: Fixed path processing in the Integrity Dialog

Changed paths:
    gui/integrity-dialog.cpp


diff --git a/gui/integrity-dialog.cpp b/gui/integrity-dialog.cpp
index 9428c0e7ca5..65b9ba941bc 100644
--- a/gui/integrity-dialog.cpp
+++ b/gui/integrity-dialog.cpp
@@ -128,7 +128,7 @@ IntegrityDialog::IntegrityDialog(Common::String endpoint, Common::String domain)
 		refreshWidgets();
 
 		g_checksum_state->endpoint = endpoint;
-		g_checksum_state->gamePath = Common::Path(ConfMan.get("path", domain));
+		g_checksum_state->gamePath = Common::Path(ConfMan.getPath("path", domain));
 		g_checksum_state->gameid = ConfMan.get("gameid", domain);
 		g_checksum_state->engineid = ConfMan.get("engineid", domain);
 		g_checksum_state->extra = ConfMan.get("extra", domain);




More information about the Scummvm-git-logs mailing list