Skip to content

Commit

Permalink
Fix minor log trace
Browse files Browse the repository at this point in the history
  • Loading branch information
drhelius committed Jan 3, 2024
1 parent e1de875 commit 6a7fa06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cartridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ bool Cartridge::GatherMetadata(u32 crc)
else if (m_bValidROM && (m_iROMSize > 0x8000))
{
m_Type = Cartridge::CartridgeActivisionCart;
Log("Cartridge is Mega Cart. ROM size: %d bytes. Banks %d.", m_iROMSize, m_iROMBankCount);
Log("Cartridge is Activision Cart. ROM size: %d bytes. Banks %d.", m_iROMSize, m_iROMBankCount);
}
else if (!m_bValidROM && (m_iROMSize > 0x8000))
{
Expand Down

0 comments on commit 6a7fa06

Please sign in to comment.