Skip to content

Commit

Permalink
Return to title actually writes to save
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Oct 4, 2024
1 parent 1867088 commit cd1482e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/vm/inst_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -254,6 +257,9 @@ VmInstruction(InstSave) {
break;
case 51:
break;
case 60:
SaveSystem::WriteSaveFile();
break;
case 70:
if (Profile::Vm::GameInstructionSet == +InstructionSet::CC) {
LoadSaveFile();
Expand Down

0 comments on commit cd1482e

Please sign in to comment.