summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/3dom2_te.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/3dom2_te.cpp')
-rw-r--r--src/mame/video/3dom2_te.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/3dom2_te.cpp b/src/mame/video/3dom2_te.cpp
index 561ef8b6cdf..105132e95c5 100644
--- a/src/mame/video/3dom2_te.cpp
+++ b/src/mame/video/3dom2_te.cpp
@@ -554,17 +554,17 @@ static void write_te_reg(uint32_t &reg, 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;