diff options
author | 2015-05-02 19:41:03 +0200 | |
---|---|---|
committer | 2015-05-02 19:41:03 +0200 | |
commit | cc3b682e52bf097d31db78032aad01d6a0b12e94 (patch) | |
tree | 860c97ca011b64c31a5ad277f5cea2b1d86eeaf0 /src/mess/machine/lynx.c | |
parent | 7df6a23ba2ae1c1df94ed8cc2398f2546f339997 (diff) | |
parent | a649a95488e1fc85813dda747dc74c596496bd1c (diff) |
Merge pull request #1 from mamedev/master
Sync to master
Diffstat (limited to 'src/mess/machine/lynx.c')
-rw-r--r-- | src/mess/machine/lynx.c | 10 |
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) |