From b7db7ebbc7e988e70253084180d57276a3a1e14b Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 1 May 2020 13:40:34 +0200 Subject: [PATCH] Don't assume fixed width for "Emulated memory size mismatch!" message Panic alerts don't use fixed width fonts, and translators are unlikely to preserve the exact spacing unless they are given specific instructions to do so and are willing to fight against the Transifex interface a bit. --- Source/Core/Core/FifoPlayer/FifoDataFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/FifoPlayer/FifoDataFile.cpp b/Source/Core/Core/FifoPlayer/FifoDataFile.cpp index 0c2d36d10d..1ce57441ea 100644 --- a/Source/Core/Core/FifoPlayer/FifoDataFile.cpp +++ b/Source/Core/Core/FifoPlayer/FifoDataFile.cpp @@ -258,8 +258,8 @@ std::unique_ptr FifoDataFile::Load(const std::string& filename, bo header.mem2_size != Memory::GetExRamSizeReal()) { CriticalAlertT("Emulated memory size mismatch!\n" - "Current | MEM1 %08X (%3dMB) MEM2 %08X (%3dMB)\n" - "DFF | MEM1 %08X (%3dMB) MEM2 %08X (%3dMB)", + "Current: MEM1 %08X (%3d MiB), MEM2 %08X (%3d MiB)\n" + "DFF: MEM1 %08X (%3d MiB), MEM2 %08X (%3d MiB)", Memory::GetRamSizeReal(), Memory::GetRamSizeReal() / 0x100000, Memory::GetExRamSizeReal(), Memory::GetExRamSizeReal() / 0x100000, header.mem1_size, header.mem1_size / 0x100000, header.mem2_size,