[Scummvm-git-logs] scummvm master -> f37001225f5830dba34226d0b3cff45fc58977c7
rvanlaar
noreply at scummvm.org
Tue Jul 9 07:57:07 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:
f37001225f DIRECTOR: fix namespace in debug message
Commit: f37001225f5830dba34226d0b3cff45fc58977c7
https://github.com/scummvm/scummvm/commit/f37001225f5830dba34226d0b3cff45fc58977c7
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2024-07-09T09:57:01+02:00
Commit Message:
DIRECTOR: fix namespace in debug message
Window -> DirectorEngine
Changed paths:
engines/director/resource.cpp
diff --git a/engines/director/resource.cpp b/engines/director/resource.cpp
index 2e15e20f97b..0880c53b90a 100644
--- a/engines/director/resource.cpp
+++ b/engines/director/resource.cpp
@@ -317,7 +317,7 @@ Archive *DirectorEngine::loadEXE(const Common::Path &movie) {
result = new RIFFArchive();
if (!result->openStream(exeStream, 0)) {
- debugC(5, kDebugLoading, "Window::loadEXE(): Failed to load RIFF from '%s'", movie.toString().c_str());
+ debugC(5, kDebugLoading, "DirectorEngine::loadEXE(): Failed to load RIFF from '%s'", movie.toString().c_str());
delete result;
return nullptr;
}
More information about the Scummvm-git-logs
mailing list