mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
Merge branch 'master' of https://github.com/mamedev/mame.git
This commit is contained in:
commit
4f43553de9
@ -181,7 +181,7 @@ void m3comm_device::device_reset_after_children()
|
||||
|
||||
UINT16 swapb16(UINT16 data)
|
||||
{
|
||||
return (data >> 8) | (data >> 8);
|
||||
return (data << 8) | (data >> 8);
|
||||
}
|
||||
|
||||
///////////// Internal MMIO
|
||||
|
Loading…
Reference in New Issue
Block a user