[Scummvm-git-logs] scummvm master -> 7ce5a5ecc1cedaf2bc7c0e4191acdebbf0474d06
digitall
547637+digitall at users.noreply.github.com
Sun Sep 12 15:54:25 UTC 2021
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:
7ce5a5ecc1 SAGA2: Fix Incorrect Format String for Error Message
Commit: 7ce5a5ecc1cedaf2bc7c0e4191acdebbf0474d06
https://github.com/scummvm/scummvm/commit/7ce5a5ecc1cedaf2bc7c0e4191acdebbf0474d06
Author: D G Turner (digitall at scummvm.org)
Date: 2021-09-12T16:53:40+01:00
Commit Message:
SAGA2: Fix Incorrect Format String for Error Message
Changed paths:
engines/saga2/main.cpp
diff --git a/engines/saga2/main.cpp b/engines/saga2/main.cpp
index 10ef20a85d..4e00bcc047 100644
--- a/engines/saga2/main.cpp
+++ b/engines/saga2/main.cpp
@@ -572,7 +572,7 @@ static bool openResource(pHResource &hr, const char *fileName) {
}
if (hr == NULL || !hr->_valid) {
- error("openResource: Cannot open resource: %s, %s", fileName);
+ error("openResource: Cannot open resource: %s", fileName);
// return false;
}
return true;
More information about the Scummvm-git-logs
mailing list