summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2016-01-29 11:30:32 +0000
committerTillmann Karras <tilkax@gmail.com>2016-02-13 17:42:24 +0000
commit797431dda479fcab8e87959959edea3bc0abcfcf (patch)
tree21fb7272bf2c32ce96ca2089810c93497e9bae0a /Source
parent1257ab49e46be5c6bc3c0b4e4014598ebee9c4be (diff)
MMIO: correct error message
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/MMIO.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/HW/MMIO.cpp b/Source/Core/Core/HW/MMIO.cpp
index 66a7f240f4..57d30ae2e0 100644
--- a/Source/Core/Core/HW/MMIO.cpp
+++ b/Source/Core/Core/HW/MMIO.cpp
@@ -197,7 +197,7 @@ template <typename T>
ReadHandlingMethod<T>* InvalidRead()
{
return ComplexRead<T>([](u32 addr) {
- ERROR_LOG(MEMMAP, "Trying to read %zu bytes from an invalid MMIO (addr=%08x)",
+ ERROR_LOG(MEMMAP, "Trying to read %zu bits from an invalid MMIO (addr=%08x)",
8 * sizeof(T), addr);
return -1;
});
@@ -206,7 +206,7 @@ template <typename T>
WriteHandlingMethod<T>* InvalidWrite()
{
return ComplexWrite<T>([](u32 addr, T val) {
- ERROR_LOG(MEMMAP, "Trying to write %zu bytes to an invalid MMIO (addr=%08x, val=%08x)",
+ ERROR_LOG(MEMMAP, "Trying to write %zu bits to an invalid MMIO (addr=%08x, val=%08x)",
8 * sizeof(T), addr, (u32)val);
});
}