[Scummvm-git-logs] scummvm master -> 24e45c560e53a70f546d7e38d261308bf8c1d5c9
sev-
sev at scummvm.org
Wed Aug 4 23:15:54 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:
24e45c560e DIRECTOR: LINGO: Do not trigger buildbot error on scummvm asserts
Commit: 24e45c560e53a70f546d7e38d261308bf8c1d5c9
https://github.com/scummvm/scummvm/commit/24e45c560e53a70f546d7e38d261308bf8c1d5c9
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-08-05T01:15:27+02:00
Commit Message:
DIRECTOR: LINGO: Do not trigger buildbot error on scummvm asserts
Changed paths:
engines/director/lingo/lingo-code.cpp
diff --git a/engines/director/lingo/lingo-code.cpp b/engines/director/lingo/lingo-code.cpp
index 5819e5c6fd..a527e5275a 100644
--- a/engines/director/lingo/lingo-code.cpp
+++ b/engines/director/lingo/lingo-code.cpp
@@ -1007,7 +1007,7 @@ Datum LC::chunkRef(ChunkType type, int startChunk, int endChunk, const Datum &sr
if (idx == (int)str.size())
break;
-
+
idx++; // skip delimiter
}
}
@@ -1740,7 +1740,7 @@ void LC::c_asserterror() {
void LC::c_asserterrordone() {
if (!g_lingo->_caughtError) {
- warning("BUILDBOT: c_asserterrordone: did not catch error");
+ warning("c_asserterrordone: did not catch error");
}
g_lingo->_expectError = false;
}
More information about the Scummvm-git-logs
mailing list