From cd1482e653307fccfc2f6b3476e1026fdc592171 Mon Sep 17 00:00:00 2001 From: Dextinfire <> Date: Fri, 4 Oct 2024 02:53:28 -0700 Subject: [PATCH] Return to title actually writes to save --- src/vm/inst_system.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/vm/inst_system.cpp b/src/vm/inst_system.cpp index 154d6996..3e5acd23 100644 --- a/src/vm/inst_system.cpp +++ b/src/vm/inst_system.cpp @@ -222,6 +222,9 @@ VmInstruction(InstSave) { switch (type) { // TODO: Types 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, // 16, 20, 21, 72, 30, 31, 32, 33, 34, 35, 41, 50, 51, 66, // 67, 70, 71, 74, 76 + case 0: { + // TODO, System Save only + } break; case 3: break; case 4: { @@ -254,6 +257,9 @@ VmInstruction(InstSave) { break; case 51: break; + case 60: + SaveSystem::WriteSaveFile(); + break; case 70: if (Profile::Vm::GameInstructionSet == +InstructionSet::CC) { LoadSaveFile();