aboutsummaryrefslogtreecommitdiff
path: root/src/core/hw/hw.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-11-28 23:08:18 -0500
committerbunnei <bunneidev@gmail.com>2014-11-28 23:08:18 -0500
commit83c3d37cd01e6f8f63b5bc27ba5754fa6ed70360 (patch)
treeeb02a8d87c8b4ee109e23efa4f9e1ab92cfdb13c /src/core/hw/hw.cpp
parent2a4b698f8e89f412e725b47fac77cedc5645bc37 (diff)
parent223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a (diff)
Merge pull request #227 from vaguilar/fix-warnings
Fixed formatting and switch statement warnings
Diffstat (limited to 'src/core/hw/hw.cpp')
-rw-r--r--src/core/hw/hw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp
index 4d07192637..ea001673a3 100644
--- a/src/core/hw/hw.cpp
+++ b/src/core/hw/hw.cpp
@@ -68,7 +68,7 @@ inline void Write(u32 addr, const T data) {
break;
default:
- ERROR_LOG(HW, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, data, addr);
+ ERROR_LOG(HW, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, (u32)data, addr);
}
}