[Scummvm-git-logs] scummvm master -> 2aa64b9253ed64ae6d370699d81b179ad6101cc7
sev-
sev at scummvm.org
Sun Jun 14 11:37:17 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:
2aa64b9253 DIRECTOR: LINGO: Defined asString() for POINT
Commit: 2aa64b9253ed64ae6d370699d81b179ad6101cc7
https://github.com/scummvm/scummvm/commit/2aa64b9253ed64ae6d370699d81b179ad6101cc7
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-06-14T13:36:54+02:00
Commit Message:
DIRECTOR: LINGO: Defined asString() for POINT
Changed paths:
engines/director/lingo/lingo.cpp
diff --git a/engines/director/lingo/lingo.cpp b/engines/director/lingo/lingo.cpp
index 8df3d0133d..c3e5fd2d18 100644
--- a/engines/director/lingo/lingo.cpp
+++ b/engines/director/lingo/lingo.cpp
@@ -876,8 +876,11 @@ Common::String Datum::asString(bool printonly) {
}
}
break;
+ case POINT:
+ s = "point:";
+ // fallthrough
case ARRAY:
- s = "[";
+ s += "[";
for (uint i = 0; i < u.farr->size(); i++) {
if (i > 0)
More information about the Scummvm-git-logs
mailing list