diff options
| author | 2015-11-25 08:22:24 +0100 | |
|---|---|---|
| committer | 2015-11-25 08:22:24 +0100 | |
| commit | 0825ce4f3b8eaab42e3682f7d01d97ce6ea0416d (patch) | |
| tree | 24de29ca8cbba68740ec8cd26f15209f19c2bf0b /src/devices/machine/e05a03.cpp | |
| parent | d1d8a66ab196156ab22ba1059d714cd040b44ab6 (diff) | |
Cleanups and version bumpmame0168
Diffstat (limited to 'src/devices/machine/e05a03.cpp')
| -rw-r--r-- | src/devices/machine/e05a03.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/e05a03.cpp b/src/devices/machine/e05a03.cpp index 7e887714884..b0389abb6df 100644 --- a/src/devices/machine/e05a03.cpp +++ b/src/devices/machine/e05a03.cpp @@ -118,8 +118,8 @@ WRITE8_MEMBER( e05a03_device::write ) break; /* printhead */ - case 0x04: m_printhead = (m_printhead & 0x100) | (data == 0 ? 0xff : 0); break; - case 0x05: m_printhead = (m_printhead & 0x0ff) | (BIT(data, 7) ? (1 << 8) : 0); break; + case 0x04: m_printhead = (m_printhead & 0x100) | (data == 0 ? 0xff : 0); break; + case 0x05: m_printhead = (m_printhead & 0x0ff) | (BIT(data, 7) ? (1 << 8) : 0); break; /* paper feed and carriage motor phase data*/ case 0x06: m_pf_motor = (data & 0xf0) >> 4; break; |
