summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sh2/sh2comn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/sh2/sh2comn.cpp')
-rw-r--r--src/devices/cpu/sh2/sh2comn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/sh2/sh2comn.cpp b/src/devices/cpu/sh2/sh2comn.cpp
index 687306babb8..2fbeff0fa9d 100644
--- a/src/devices/cpu/sh2/sh2comn.cpp
+++ b/src/devices/cpu/sh2/sh2comn.cpp
@@ -612,7 +612,7 @@ WRITE32_MEMBER( sh2_device::sh7604_w )
{
INT64 a = m_m[0x45] | ((UINT64)(m_m[0x44]) << 32);
INT64 b = (INT32)m_m[0x40];
- LOG(("SH2 '%s' div+mod %" I64FMT "d/%" I64FMT "d\n", tag(), a, b));
+ LOG(("SH2 '%s' div+mod %d/%d\n", tag(), a, b));
if (b)
{
INT64 q = a / b;