[Scummvm-git-logs] scummvm master -> a281fc21a24638e2a12f87575481b60a33989365
sev-
sev at scummvm.org
Fri Feb 21 00:10:46 UTC 2020
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:
a281fc21a2 DIRECTOR: Removed excess debug ouptut
Commit: a281fc21a24638e2a12f87575481b60a33989365
https://github.com/scummvm/scummvm/commit/a281fc21a24638e2a12f87575481b60a33989365
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-02-21T01:10:37+01:00
Commit Message:
DIRECTOR: Removed excess debug ouptut
Changed paths:
engines/director/util.cpp
diff --git a/engines/director/util.cpp b/engines/director/util.cpp
index 6d129f6..fca3cc7 100644
--- a/engines/director/util.cpp
+++ b/engines/director/util.cpp
@@ -154,7 +154,6 @@ Common::String getPath(Common::String path, Common::String cwd) {
}
Common::String pathMakeRelative(Common::String path) {
- warning("path: %s", path.c_str());
Common::String initialPath = Common::normalizePath(g_director->getCurrentPath() + convertPath(path), '/');
Common::File f;
Common::String convPath = initialPath;
@@ -168,8 +167,6 @@ Common::String pathMakeRelative(Common::String path) {
int pos = convPath.find('/');
convPath = Common::String(&convPath.c_str()[pos + 1]);
- warning("Trying %s", convPath.c_str());
-
if (!f.open(convPath))
continue;
More information about the Scummvm-git-logs
mailing list