aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script_v8.cpp')
-rw-r--r--scumm/script_v8.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index 4bed7f6016..991c6988c1 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -930,10 +930,14 @@ void Scumm_v8::o8_roomOps()
setPalette(pop()); // fixme: i think this is right
break;
case 0x5D: // SO_ROOM_SAVE_GAME Save game
- warning("V8 Save game opcode not implemented");
+ _saveLoadCompatible = true;
+ _saveLoadSlot = 1;
+ _saveLoadFlag = 1;
break;
case 0x5E: // SO_ROOM_LOAD_GAME Load game
- warning("V8 Load game opcode not implemented");
+ _saveLoadCompatible = true;
+ _saveLoadSlot = 1;
+ _saveLoadFlag = 2;
break;
case 0x5F: // SO_ROOM_SATURATION Set saturation of room colors
e = pop();