diff options
author | 2016-01-27 08:12:00 +0100 | |
---|---|---|
committer | 2016-01-27 08:12:00 +0100 | |
commit | b1d6f6d63f8294a3f62d7db6f9eea07da1d93664 (patch) | |
tree | 10258b6f255e00e7eec2ec30112d6de07015c475 /src/emu/bookkeeping.cpp | |
parent | 9425c141de76ef9ee178af80731110e228fa89bb (diff) |
Cleanups and version bumpmame0170
Diffstat (limited to 'src/emu/bookkeeping.cpp')
-rw-r--r-- | src/emu/bookkeeping.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emu/bookkeeping.cpp b/src/emu/bookkeeping.cpp index 753d9c8e270..b93493db9a4 100644 --- a/src/emu/bookkeeping.cpp +++ b/src/emu/bookkeeping.cpp @@ -22,9 +22,8 @@ bookkeeping_manager::bookkeeping_manager(running_machine &machine) : m_machine(machine), - m_dispensed_tickets(0) + m_dispensed_tickets(0) { - /* reset coin counters */ for (int counternum = 0; counternum < COIN_COUNTERS; counternum++) { @@ -33,7 +32,7 @@ bookkeeping_manager::bookkeeping_manager(running_machine &machine) m_coin_count[counternum] = 0; } - // register coin save state + // register coin save state machine.save().save_item(NAME(m_coin_count)); machine.save().save_item(NAME(m_coinlockedout)); machine.save().save_item(NAME(m_lastcoin)); |