summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Fifo.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-01-09 22:27:18 +0100
committerGitHub <noreply@github.com>2022-01-09 22:27:18 +0100
commit3da64875314e2a1743b8d6453403ef85e8b45eb4 (patch)
treee97af4fd1e5319cb74567f7c434d5084d9e1c4a5 /Source/Core/VideoCommon/Fifo.cpp
parent36d605715d4045d6a556b4234d1d925f79c5eea3 (diff)
parentca9bf3174f4acd4c9d78ac7c21b6aeaa1430b7ef (diff)
Merge pull request #10209 from Pokechu22/assert-fmt
Assertion and panic alert improvements
Diffstat (limited to 'Source/Core/VideoCommon/Fifo.cpp')
-rw-r--r--Source/Core/VideoCommon/Fifo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp
index 33dd94817d..624e98452e 100644
--- a/Source/Core/VideoCommon/Fifo.cpp
+++ b/Source/Core/VideoCommon/Fifo.cpp
@@ -345,7 +345,7 @@ void RunGpuLoop()
ASSERT_MSG(COMMANDPROCESSOR,
(s32)fifo.CPReadWriteDistance.load(std::memory_order_relaxed) - 32 >= 0,
- "Negative fifo.CPReadWriteDistance = %i in FIFO Loop !\nThat can produce "
+ "Negative fifo.CPReadWriteDistance = {} in FIFO Loop !\nThat can produce "
"instability in the game. Please report it.",
fifo.CPReadWriteDistance.load(std::memory_order_relaxed) - 32);