reduce verbosity of Test_C64() and Save_CA1()

This commit is contained in:
Thomas Bernard
2020-02-08 09:14:33 +01:00
parent 3864aa3905
commit 11459d3e3d
2 changed files with 3 additions and 1 deletions

View File

@@ -105,6 +105,8 @@ void Test_C64(T_IO_Context * context, FILE * file)
if (!Read_word_le(file, &load_addr))
return;
}
if (load_addr < 0x0400) // No PRG could load to Zeropage or processor stack
return;
GFX2_Log(GFX2_DEBUG, "Test_C64() file_size=%ld LoadAddr=$%04X\n", file_size, load_addr);
if (!Read_bytes(file, header, sizeof(header)))
return;