diff options
-rw-r--r-- | engines/parallaction/exec_br.cpp | 8 | ||||
-rw-r--r-- | engines/parallaction/sound_ns.cpp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engines/parallaction/exec_br.cpp b/engines/parallaction/exec_br.cpp index e351a5ab2f..a1e43dc077 100644 --- a/engines/parallaction/exec_br.cpp +++ b/engines/parallaction/exec_br.cpp @@ -279,11 +279,11 @@ DECLARE_COMMAND_OPCODE(give) { /* NOTE: the following code is disabled until I deal with _inventory and * _charInventories not being public */ -/* int item = ctxt._cmd->_object; + int item = ctxt._cmd->_object; int recipient = ctxt._cmd->_characterId; - _vm->_charInventories[recipient]->addItem(item); - _vm->_inventory->removeItem(item); -*/ +// _vm->_charInventories[recipient]->addItem(item); + _vm->dropItem(item); + } diff --git a/engines/parallaction/sound_ns.cpp b/engines/parallaction/sound_ns.cpp index 65ee75ed98..1fd627ce4b 100644 --- a/engines/parallaction/sound_ns.cpp +++ b/engines/parallaction/sound_ns.cpp @@ -319,7 +319,7 @@ void DosSoundMan_ns::playLocationMusic(const char *location) { } if (!scumm_stricmp(location, "night") || !scumm_stricmp(location, "intsushi")) { - setMusicFile("nuts"); + setMusicFile("soft"); playMusic(); debugC(2, kDebugExec, "changeLocation: started music 'soft'"); |