Skip to content

Commit

Permalink
minor touch ups
Browse files Browse the repository at this point in the history
  • Loading branch information
zoogie authored and zoogie committed Jul 8, 2018
1 parent 4e45fad commit bd2b5ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified boot.nds
Binary file not shown.
4 changes: 3 additions & 1 deletion source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ int main() {
iprintf("Creating BACKUP.BIN...\n");
res = createBackup();
iprintf("Create backup res: %08X\n", res);
if(res) error(9);
if(res) error(8);
res = verifyBackup();
iprintf("Verify backup res: %08X\n", res);
}
Expand Down Expand Up @@ -197,6 +197,8 @@ u32 handleUI(){
for(int i=0;i<menu_size;i++){
iprintf("%s%s\n", i==menu_index ? " > " : " ", menu[i]);
}

iprintf("\nWARNING: Don't lose your\nsdmc:/boot9strap/BACKUP.BIN !!");

swiWaitForVBlank();
scanKeys();
Expand Down

0 comments on commit bd2b5ff

Please sign in to comment.