diff options
author | 2018-11-05 19:11:18 +0100 | |
---|---|---|
committer | 2018-11-05 19:11:18 +0100 | |
commit | 13247311f650d2190ca50f05f2879c63a3ad0b6b (patch) | |
tree | 565cf81b012b0879a1ef304c955908ea016d2dc6 /src/mame/machine/tigeroad.cpp | |
parent | 884465327b05bdbc0eae9894d4b84744a8ab5567 (diff) |
Renamed flipendian -> swapendian, as I spent minutes trying to find the functions to tell to another person who spent minutes trying to find the functions, and we refer to such functions as swapping just about everywhere else in the codebase, nw
Diffstat (limited to 'src/mame/machine/tigeroad.cpp')
-rw-r--r-- | src/mame/machine/tigeroad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/tigeroad.cpp b/src/mame/machine/tigeroad.cpp index 190fe0a400a..1c5a10febac 100644 --- a/src/mame/machine/tigeroad.cpp +++ b/src/mame/machine/tigeroad.cpp @@ -25,7 +25,7 @@ WRITE16_MEMBER(pushman_state::pushman_mcu_comm_w) switch (offset & 0x01) { case 0: - m_host_latch = flipendian_int16(data); + m_host_latch = swapendian_int16(data); break; case 1: m_mcu->pd_w(space, 0, data & 0x00ff); |