From 3ee302df757e19415cb3555c464ef233d253bc26 Mon Sep 17 00:00:00 2001 From: comex Date: Mon, 3 Aug 2015 01:57:59 -0400 Subject: [PATCH] Fix wording of invalid read/write message --- Source/Core/Core/PowerPC/MMU.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/MMU.cpp b/Source/Core/Core/PowerPC/MMU.cpp index 282d929e39..44450c4269 100644 --- a/Source/Core/Core/PowerPC/MMU.cpp +++ b/Source/Core/Core/PowerPC/MMU.cpp @@ -888,7 +888,7 @@ static void GenerateDSIException(u32 effectiveAddress, bool write) // DSI exceptions are only supported in MMU mode. if (!SConfig::GetInstance().bMMU) { - PanicAlert("Invalid %s to 0x%08x, PC = 0x%08x ", write ? "Write to" : "Read from", effectiveAddress, PC); + PanicAlert("Invalid %s 0x%08x, PC = 0x%08x ", write ? "write to" : "read from", effectiveAddress, PC); return; }