diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-08-03 03:14:07 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-08-03 03:14:07 -0400 |
| commit | 8d72145c4454cf3e86ff11f0ee9e9f3ca1a63d45 (patch) | |
| tree | eb1ef2b0806e016582094d4ee144ff275e935300 /Source | |
| parent | 5097a22844b850b429872f4de390bd958b11a616 (diff) | |
| parent | 3ee302df757e19415cb3555c464ef233d253bc26 (diff) | |
Merge pull request #2797 from comex/invalid-typo
Fix wording of invalid read/write message
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/PowerPC/MMU.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
