[Scummvm-git-logs] scummvm master -> 9ebd702a4cf1962d492c74301bb2265313fe62d4

rvanlaar noreply at scummvm.org
Fri Mar 11 22:47:14 UTC 2022


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:
9ebd702a4c DIRECTOR: LINGO: Remove buildbot warnings


Commit: 9ebd702a4cf1962d492c74301bb2265313fe62d4
    https://github.com/scummvm/scummvm/commit/9ebd702a4cf1962d492c74301bb2265313fe62d4
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2022-03-11T23:46:36+01:00

Commit Message:
DIRECTOR: LINGO: Remove buildbot warnings

The entity STUBS that were encountered on the buildbot are all fixed
now.

This reverts commit a426853acc5b21a269c1fd5f8e697cf55b784f0e.

Changed paths:
    engines/director/lingo/lingo-the.cpp


diff --git a/engines/director/lingo/lingo-the.cpp b/engines/director/lingo/lingo-the.cpp
index e43729f2e9b..9b35e8c182f 100644
--- a/engines/director/lingo/lingo-the.cpp
+++ b/engines/director/lingo/lingo-the.cpp
@@ -352,7 +352,7 @@ const char *Lingo::field2str(int id) {
 }
 
 #define getTheEntitySTUB(entity) \
-	warning("BUILDBOT: Lingo::getTheEntity(): Unprocessed getting entity %s", entity2str(entity));
+	warning("Lingo::getTheEntity(): Unprocessed getting entity %s", entity2str(entity));
 
 Datum Lingo::getTheEntity(int entity, Datum &id, int field) {
 	if (debugChannelSet(3, kDebugLingoExec)) {
@@ -910,10 +910,10 @@ Datum Lingo::getTheEntity(int entity, Datum &id, int field) {
 }
 
 #define setTheEntitySTUB(entity) \
-	warning("BUILDBOT: Lingo::setTheEntity(): Unprocessed setting entity %s", entity2str(entity));
+	warning("Lingo::setTheEntity(): Unprocessed setting entity %s", entity2str(entity));
 
 #define setTheEntityReadOnly(entity) \
-	warning("BUILDBOT: Lingo::setTheEntity: Attempt to set read-only entity %s", entity2str(entity));
+	warning("Lingo::setTheEntity: Attempt to set read-only entity %s", entity2str(entity));
 
 void Lingo::setTheEntity(int entity, Datum &id, int field, Datum &d) {
 	if (debugChannelSet(3, kDebugLingoExec)) {




More information about the Scummvm-git-logs mailing list