Skip to content

Commit

Permalink
Moved SFO patch menu options
Browse files Browse the repository at this point in the history
  • Loading branch information
bucanero committed Jul 26, 2020
1 parent f6d97a0 commit 7153e5e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions source/saves.c
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,10 @@ int ReadCodes(save_entry_t * save)

_setManualCode(&ret[cur_count++], PATCH_COMMAND, "\x06 Apply Changes & Resign", CMD_RESIGN_SAVE);
_setManualCode(&ret[cur_count++], PATCH_COMMAND, "\x07 View Save Details", CMD_VIEW_DETAILS);

_addBackupCommands(&ret[cur_count], save->path);
cur_count += MENU_COPY_CMDS;

_setManualCode(&ret[cur_count++], PATCH_NULL, "----- \xE2\x98\x85 SFO Patches \xE2\x98\x85 -----", 0);
_setManualCode(&ret[cur_count++], PATCH_SFO, "\x07 Remove Account ID", SFO_REMOVE_ACCOUNT_ID);
_setManualCode(&ret[cur_count++], PATCH_SFO, "\x07 Remove Console ID", SFO_REMOVE_PSID);
Expand All @@ -507,9 +511,6 @@ int ReadCodes(save_entry_t * save)
ret[cur_count].options = _getSaveTitleIDs(save->title_id);
cur_count++;

_addBackupCommands(&ret[cur_count], save->path);
cur_count += MENU_COPY_CMDS;

if (cheat_count == 0)
{
if (buffer)
Expand Down

0 comments on commit 7153e5e

Please sign in to comment.