diff options
author | 2020-02-28 00:58:15 -0500 | |
---|---|---|
committer | 2020-02-28 00:58:15 -0500 | |
commit | 0e1c4039e19c765d05ef4fb689c737d5ed8e7c5b (patch) | |
tree | e4e9925452f1df25b239f820001ca1a86c3f8687 | |
parent | aefdb21281c7cf99e26f5db645e8ab9c2cedd674 (diff) |
am79c30.cpp: Fix build (nw)
-rw-r--r-- | src/devices/machine/am79c30.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/am79c30.cpp b/src/devices/machine/am79c30.cpp index 7ed947d2546..77b87733044 100644 --- a/src/devices/machine/am79c30.cpp +++ b/src/devices/machine/am79c30.cpp @@ -988,7 +988,7 @@ void am79c30a_device::set_dmr4(u8 data) if ((data & 0x03) == 0) LOG("%s: Receiver threshold = 1 byte\n", machine().describe_context()); else - LOG("%s: Receiver threshold = %d/%d bytes\n", machine().describe_context(), 1 << (data & 0x03), std::min((data & 0x03) * 8 + 8, 30); + LOG("%s: Receiver threshold = %d/%d bytes\n", machine().describe_context(), 1 << (data & 0x03), std::min((data & 0x03) * 8 + 8, 30)); } if ((m_dmr4 & 0x0c) != (data & 0x0c)) { |