ACCESS: MM - Implement cmdPushLocation

This commit is contained in:
Strangerke 2015-02-11 07:23:30 +01:00
parent a54bb5e351
commit 232775c5b3
2 changed files with 6 additions and 3 deletions

View File

@ -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++)

View File

@ -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() {