aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorThierry Crozat2017-08-31 23:41:52 +0100
committerThierry Crozat2018-01-23 02:15:31 +0000
commit577ec1c56dcf8c884234942b252d952c54e16c8b (patch)
tree56af2f1d16cfd511a706041e35929db238a2ffe2 /engines
parent02290c32b68ecf6bc39ee5f7149051463c5bd626 (diff)
downloadscummvm-rg350-577ec1c56dcf8c884234942b252d952c54e16c8b.tar.gz
scummvm-rg350-577ec1c56dcf8c884234942b252d952c54e16c8b.tar.bz2
scummvm-rg350-577ec1c56dcf8c884234942b252d952c54e16c8b.zip
SUPERNOVA: Fix missing return value for cmdGiveAll debug command
Diffstat (limited to 'engines')
-rw-r--r--engines/supernova/console.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/supernova/console.cpp b/engines/supernova/console.cpp
index 328c46cd1b..29c30b6c6f 100644
--- a/engines/supernova/console.cpp
+++ b/engines/supernova/console.cpp
@@ -104,6 +104,7 @@ bool Console::cmdGiveAll(int argc, const char **argv) {
_gm->takeObject(*_gm->_rooms[AIRLOCK]->getObject(4)); // Helmet
_gm->takeObject(*_gm->_rooms[AIRLOCK]->getObject(5)); // Space Suit
_gm->takeObject(*_gm->_rooms[AIRLOCK]->getObject(6)); // Supply
+ return true;
}
}