[Scummvm-git-logs] scummvm master -> 8219ede6d4d4fa61e90f382bd74c410948f65350
LittleToonCat
noreply at scummvm.org
Wed Nov 8 06:45:31 UTC 2023
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:
8219ede6d4 SCUMM HE: Move warns to DEBUG_MOONBASE_AI.
Commit: 8219ede6d4d4fa61e90f382bd74c410948f65350
https://github.com/scummvm/scummvm/commit/8219ede6d4d4fa61e90f382bd74c410948f65350
Author: Little Cat (toontownlittlecat at gmail.com)
Date: 2023-11-08T02:45:22-04:00
Commit Message:
SCUMM HE: Move warns to DEBUG_MOONBASE_AI.
Changed paths:
engines/scumm/he/logic/moonbase_logic.cpp
diff --git a/engines/scumm/he/logic/moonbase_logic.cpp b/engines/scumm/he/logic/moonbase_logic.cpp
index ff4caa49109..623dfeed45f 100644
--- a/engines/scumm/he/logic/moonbase_logic.cpp
+++ b/engines/scumm/he/logic/moonbase_logic.cpp
@@ -361,22 +361,22 @@ void LogicHEmoonbase::op_ai_test_kludge(int op, int numArgs, int32 *args) {
}
int LogicHEmoonbase::op_ai_master_control_program(int op, int numArgs, int32 *args) {
- warning("op_ai_master_control_program()");
+ debugC(DEBUG_MOONBASE_AI, "op_ai_master_control_program()");
return _vm1->_moonbase->_ai->masterControlProgram(numArgs, args);
}
void LogicHEmoonbase::op_ai_reset(int op, int numArgs, int32 *args) {
- warning("op_ai_reset())");
+ debugC(DEBUG_MOONBASE_AI, "op_ai_reset())");
_vm1->_moonbase->_ai->resetAI();
}
void LogicHEmoonbase::op_ai_set_type(int op, int numArgs, int32 *args) {
- warning("op_ai_set_type()");
+ debugC(DEBUG_MOONBASE_AI, "op_ai_set_type()");
_vm1->_moonbase->_ai->setAIType(numArgs, args);
}
void LogicHEmoonbase::op_ai_clean_up(int op, int numArgs, int32 *args) {
- warning("op_ai_clean_up()");
+ debugC(DEBUG_MOONBASE_AI, "op_ai_clean_up()");
_vm1->_moonbase->_ai->cleanUpAI();
}
More information about the Scummvm-git-logs
mailing list