reduce verbosity of Test_C64() and Save_CA1()
This commit is contained in:
parent
3864aa3905
commit
11459d3e3d
@ -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;
|
||||
|
||||
@ -1797,7 +1797,7 @@ void Save_CA1(T_IO_Context * context)
|
||||
}
|
||||
else
|
||||
{
|
||||
GFX2_Log(GFX2_DEBUG, "byte %02X x %hu\n", current, count);
|
||||
//GFX2_Log(GFX2_DEBUG, "byte %02X x %hu\n", current, count);
|
||||
if (count < 256)
|
||||
{
|
||||
// ESC,a,b => repeat (a + 1) x byte b
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user