mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-15 08:39:45 +00:00
ACCESS: MM - Implement cmdPushLocation
This commit is contained in:
parent
a54bb5e351
commit
232775c5b3
@ -216,7 +216,6 @@ int InventoryManager::newDisplayInv() {
|
||||
}
|
||||
|
||||
int InventoryManager::displayInv() {
|
||||
warning("TODO: displayInv");
|
||||
int *inv = (int *) malloc (Martian::INVENTORY_SIZE * sizeof(int));
|
||||
|
||||
for (int i = 0; i < Martian::INVENTORY_SIZE; i++)
|
||||
|
@ -1048,7 +1048,7 @@ void Scripts::cmdDispAbout() {
|
||||
}
|
||||
|
||||
void Scripts::cmdPushLocation() {
|
||||
error("TODO cmdPushLocation");
|
||||
_choiceStart = _data->pos() - 1;
|
||||
}
|
||||
|
||||
void Scripts::cmdCheckTravel() {
|
||||
@ -1062,7 +1062,11 @@ void Scripts::cmdCheckTravel() {
|
||||
}
|
||||
|
||||
void Scripts::cmdBlock() {
|
||||
error("TODO: DEMO - cmdBlock");
|
||||
error("TODO: cmdBlock");
|
||||
int val1 = _data->readSint16LE();
|
||||
int val2 = _data->readUint16LE();
|
||||
int val3 = _data->readSint16LE();
|
||||
int val4 = _data->readUint16LE();
|
||||
}
|
||||
|
||||
void Scripts::cmdPlayerOff() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user