mirror of
https://github.com/holub/mame
synced 2025-04-20 23:42:22 +03:00
fix compile with clang 6 (nw)
This commit is contained in:
parent
56152346cc
commit
3edc0c0d8e
@ -554,17 +554,17 @@ static void write_te_reg(uint32_t ®, uint32_t data, m2_te_device::te_reg_wmod
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case REG_WRITE:
|
||||
case m2_te_device::REG_WRITE:
|
||||
{
|
||||
reg = data;
|
||||
break;
|
||||
}
|
||||
case REG_SET:
|
||||
case m2_te_device::REG_SET:
|
||||
{
|
||||
reg |= data;
|
||||
break;
|
||||
}
|
||||
case REG_CLEAR:
|
||||
case m2_te_device::REG_CLEAR:
|
||||
{
|
||||
reg &= ~data;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user