From 2a245ba5a51c19c15313200960569729080800b0 Mon Sep 17 00:00:00 2001 From: Alex Duchesne Date: Tue, 24 Dec 2024 14:03:32 -0500 Subject: [PATCH] SNES: Print ROM size after loading --- retro-core/components/snes9x/src/memmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retro-core/components/snes9x/src/memmap.c b/retro-core/components/snes9x/src/memmap.c index 4e3c5806..b4fec785 100644 --- a/retro-core/components/snes9x/src/memmap.c +++ b/retro-core/components/snes9x/src/memmap.c @@ -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; }