summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/generic.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/generic.c')
-rw-r--r--src/emu/machine/generic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/machine/generic.c b/src/emu/machine/generic.c
index 71b06b336a5..fb43c68c165 100644
--- a/src/emu/machine/generic.c
+++ b/src/emu/machine/generic.c
@@ -32,16 +32,16 @@ static void interrupt_reset(running_machine *machine);
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;
/* interrupt status for up to 8 CPUs */
- UINT8 interrupt_enable[8];
+ UINT8 interrupt_enable[8];
};