diff options
author | vaguilar <victoraguilar90@gmail.com> | 2014-11-27 11:35:27 +0100 |
---|---|---|
committer | vaguilar <victoraguilar90@gmail.com> | 2014-11-27 11:59:14 +0100 |
commit | 223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a (patch) | |
tree | eb02a8d87c8b4ee109e23efa4f9e1ab92cfdb13c /src/core/hw/ndma.cpp | |
parent | Merge pull request #223 from linkmauve/remove-thread (diff) | |
download | yuzu-223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a.tar yuzu-223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a.tar.gz yuzu-223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a.tar.bz2 yuzu-223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a.tar.lz yuzu-223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a.tar.xz yuzu-223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a.tar.zst yuzu-223e76d51dd4af9d3ff8b823ddb82a3ee9b2586a.zip |
Diffstat (limited to 'src/core/hw/ndma.cpp')
-rw-r--r-- | src/core/hw/ndma.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/ndma.cpp b/src/core/hw/ndma.cpp index e29a773f1..593e5de30 100644 --- a/src/core/hw/ndma.cpp +++ b/src/core/hw/ndma.cpp @@ -15,7 +15,7 @@ inline void Read(T &var, const u32 addr) { template <typename T> inline void Write(u32 addr, const T data) { - ERROR_LOG(NDMA, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, data, addr); + ERROR_LOG(NDMA, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, (u32)data, addr); } // Explicitly instantiate template functions because we aren't defining this in the header: |