aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he/logic
diff options
context:
space:
mode:
authorEugene Sandulenko2016-05-10 17:12:13 +0200
committerEugene Sandulenko2016-05-10 18:07:36 +0200
commit543920a1d672c13d6015bf0cedcf1ebe2f827270 (patch)
tree72063a36bce3cc21ad5fe0a407a0f0c548689f20 /engines/scumm/he/logic
parent35335b253e046e1bc9f9b8cd04878708dc384492 (diff)
downloadscummvm-rg350-543920a1d672c13d6015bf0cedcf1ebe2f827270.tar.gz
scummvm-rg350-543920a1d672c13d6015bf0cedcf1ebe2f827270.tar.bz2
scummvm-rg350-543920a1d672c13d6015bf0cedcf1ebe2f827270.zip
SCUMM HE: Started code for loading FOW resources
Diffstat (limited to 'engines/scumm/he/logic')
-rw-r--r--engines/scumm/he/logic/moonbase_logic.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/scumm/he/logic/moonbase_logic.cpp b/engines/scumm/he/logic/moonbase_logic.cpp
index 604dc6774c..4483f1abca 100644
--- a/engines/scumm/he/logic/moonbase_logic.cpp
+++ b/engines/scumm/he/logic/moonbase_logic.cpp
@@ -22,6 +22,7 @@
#include "scumm/he/intern_he.h"
#include "scumm/he/logic_he.h"
+#include "scumm/he/moonbase/moonbase.h"
namespace Scumm {
@@ -214,7 +215,7 @@ void LogicHEmoonbase::op_set_fow_information(int op, int numArgs, int32 *args) {
}
int LogicHEmoonbase::op_set_fow_image(int op, int numArgs, int32 *args) {
- debug(2, "STUB: op_set_fow_image(%d)", args[0]);
+ debug(2, "op_set_fow_image(%d)", args[0]);
return _vm->_moonbase->setFOWImage(args[0]) ? 1 : 0;
}