summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/JitWindow.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-05-18 10:31:39 -0400
committerLioncash <mathew1800@gmail.com>2014-05-18 10:31:39 -0400
commit75cb8a74521a4eb5190644aefd7389d833aebf8a (patch)
treec8ee94aec39cb1ec778e70a735933d9433b4f631 /Source/Core/DolphinWX/Debugger/JitWindow.cpp
parente1359382be30bb8f61a779846c9ebc1fa72791d0 (diff)
Fix a typo in the JIT debugger window
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/JitWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/JitWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/JitWindow.cpp b/Source/Core/DolphinWX/Debugger/JitWindow.cpp
index 4538915108..47a153a063 100644
--- a/Source/Core/DolphinWX/Debugger/JitWindow.cpp
+++ b/Source/Core/DolphinWX/Debugger/JitWindow.cpp
@@ -177,7 +177,7 @@ void CJitWindow::Compare(u32 em_address)
if (st.isFirstBlockOfFunction)
sptr += sprintf(sptr, "(first block of function)\n");
if (st.isLastBlockOfFunction)
- sptr += sprintf(sptr, "(first block of function)\n");
+ sptr += sprintf(sptr, "(last block of function)\n");
sptr += sprintf(sptr, "%i estimated cycles\n", st.numCycles);