SNES: Print ROM size after loading

This commit is contained in:
Alex Duchesne 2024-12-24 14:03:32 -05:00
parent 48a164a8e5
commit 2a245ba5a5

View File

@ -626,7 +626,7 @@ void InitROM(bool Interleaved)
Sanitize(Memory.ROMId, sizeof(Memory.ROMId));
Sanitize(Memory.CompanyId, sizeof(Memory.CompanyId));
printf("Rom loaded: name: %s, id: %s, company: %s\n", Memory.ROMName, Memory.ROMId, Memory.CompanyId);
printf("Rom loaded: name: %s, id: %s, company: %s, size: %dKB\n", Memory.ROMName, Memory.ROMId, Memory.CompanyId, Memory.CalculatedSize / 1024);
Settings.ForceHeader = Settings.ForceHiROM = Settings.ForceLoROM = Settings.ForceInterleaved = Settings.ForceNoHeader = Settings.ForceNotInterleaved = Settings.ForceInterleaved2 = false;
}