Move debug info screen and text debug screen to debug menu

This commit is contained in:
Philippe Symons
2026-03-09 23:12:32 +01:00
parent c498d59572
commit 10350179db
16 changed files with 203 additions and 149 deletions

View File

@@ -187,7 +187,7 @@ void rom_data::print_rom_info()
bool rom_data::verify_rom()
{
return !rom_loaded ||
IGNORE_GAME_PAK ||
g_debug_options.ignore_game_pak ||
((gamecode == ((*(vu8 *)(0x80000AC)) << 0x10 | (*(vu8 *)(0x80000AD)) << 0x08 | (*(vu8 *)(0x80000AE)) << 0x00)) &&
(language == (*(vu8 *)(0x80000AF))) &&
(version == (*(vu8 *)(0x80000BC))));