summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/lynx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/lynx.c')
-rw-r--r--src/mess/machine/lynx.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/machine/lynx.c b/src/mess/machine/lynx.c
index f2864ef3ed6..df70f47f6d3 100644
--- a/src/mess/machine/lynx.c
+++ b/src/mess/machine/lynx.c
@@ -1381,11 +1381,11 @@ void lynx_state::lynx_timer_init(int which)
memset(&m_timer[which], 0, sizeof(LYNX_TIMER));
m_timer[which].timer = timer_alloc(TIMER_SHOT);
- state_save_register_item(machine(), "Lynx", NULL, which, m_timer[which].bakup);
- state_save_register_item(machine(), "Lynx", NULL, which, m_timer[which].cntrl1);
- state_save_register_item(machine(), "Lynx", NULL, which, m_timer[which].cntrl2);
- state_save_register_item(machine(), "Lynx", NULL, which, m_timer[which].counter);
- state_save_register_item(machine(), "Lynx", NULL, which, m_timer[which].timer_active);
+ save_item(NAME(m_timer[which].bakup), which);
+ save_item(NAME(m_timer[which].cntrl1), which);
+ save_item(NAME(m_timer[which].cntrl2), which);
+ save_item(NAME(m_timer[which].counter), which);
+ save_item(NAME(m_timer[which].timer_active), which);
}
void lynx_state::lynx_timer_signal_irq(int which)