mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 00:45:10 +00:00
Start the correct music inside the Hot Sushi. This fixes the part of ticket 2879793 that is actually a bug.
svn-id: r45147
This commit is contained in:
parent
7e154726ff
commit
c0a4881f5a
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -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'");
|
||||
|
Loading…
x
Reference in New Issue
Block a user