Minor improvements

This commit is contained in:
Robin Jones 2023-06-08 23:16:02 +01:00
parent 39ac475bc1
commit a0d7630e86
3 changed files with 7 additions and 10 deletions

View File

@ -47,6 +47,7 @@ void load_n64_rom() {
printf("ROM version: %hhu\n", temp_header.version);
printf("ROM checksum: %llu\n\n", temp_header.checksum);
// FIXME: if the ROM header does not make sense, it is an invalid ROM.
uint8_t save_type = rom_db_match_save_type(temp_header);
@ -218,11 +219,7 @@ void menu_main_init (settings_t *settings) {
}
else {
console_init();
console_clear();
printf("Failed... Returning to menu...\n");
wait_ms(1000);
menu_fileinfo(current_fileinfo);
menu_main_refresh(current_dir);
}
}