diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/emu/machine/generic.c | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/emu/machine/generic.c')
-rw-r--r-- | src/emu/machine/generic.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/machine/generic.c b/src/emu/machine/generic.c index 38eb23d55a4..7a0fbeb7d1f 100644 --- a/src/emu/machine/generic.c +++ b/src/emu/machine/generic.c @@ -31,13 +31,13 @@ static void counters_save(running_machine &machine, int config_type, xml_data_no struct generic_machine_private { /* tickets and coin counters */ - UINT32 dispensed_tickets; - UINT32 coin_count[COIN_COUNTERS]; - UINT32 coinlockedout[COIN_COUNTERS]; - UINT32 lastcoin[COIN_COUNTERS]; + UINT32 dispensed_tickets; + UINT32 coin_count[COIN_COUNTERS]; + UINT32 coinlockedout[COIN_COUNTERS]; + UINT32 lastcoin[COIN_COUNTERS]; /* memory card status */ - int memcard_inserted; + int memcard_inserted; }; |