summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2018-10-08 01:48:34 +0100
committerTillmann Karras <tilkax@gmail.com>2018-10-08 02:00:25 +0100
commit09385b954262d866569b3ea9a53abc101307fe95 (patch)
treed568dd068966d4f7f92f3eb5d7e6d4684d3f0343 /Source/Core
parentec4c019a7b1478cb124ea957435d4015c234e1a5 (diff)
FIFOAnalyzer: print BP registers without X suffix
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp
index 6461f33244..8fcb855ddc 100644
--- a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp
+++ b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp
@@ -281,7 +281,7 @@ void FIFOAnalyzer::UpdateDetails()
{
u32 cmd2 = Common::swap32(objectdata);
objectdata += 4;
- new_label = QStringLiteral("BP %02X %06X")
+ new_label = QStringLiteral("BP %02 %06")
.arg(cmd2 >> 24, 2, 16, QLatin1Char('0'))
.arg(cmd2 & 0xFFFFFF, 6, 16, QLatin1Char('0'));
}