Skip to content

Commit

Permalink
Add screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
bucanero committed Dec 23, 2021
1 parent 7f56704 commit 1eceb19
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package metadata.
TITLE := Apollo Save Tool
VERSION := 1.00
VERSION := 0.50
TITLE_ID := APOL00004
CONTENT_ID := IV0000-APOL00004_00-APOLLO0000000PS4

Expand Down
Binary file added appdata/version.dat
Binary file not shown.
Binary file added docs/screenshots/screenshot-main.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 3 additions & 4 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -786,18 +786,17 @@ void SetMenu(int id)
break;

case MENU_ONLINE_DB: //Cheats Online Menu
if (!online_saves.list)
ReloadUserSaves(&online_saves);
if (!online_saves.list && !ReloadUserSaves(&online_saves))
return;

if (apollo_config.doAni)
Draw_UserCheatsMenu_Ani(&online_saves);
break;

case MENU_CREDITS: //About Menu
// set to display the PSID on the About menu
sprintf(idps_str, "%016lX %016lX", apollo_config.idps[0], apollo_config.idps[1]);
sprintf(psid_str, "%016lX %016lX", apollo_config.psid[0], apollo_config.psid[1]);
sprintf(user_id_str, "%08d", apollo_config.user_id);
sprintf(user_id_str, "%08x", apollo_config.user_id);
sprintf(account_id_str, "%016lx", apollo_config.account_id);

if (apollo_config.doAni)
Expand Down

0 comments on commit 1eceb19

Please sign in to comment.