summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/timer.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-06 17:54:42 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-06 17:54:42 +0000
commitd92a2e0c4e5060315ebce8bb26997227940f1662 (patch)
tree759499aac683a34dd4c3c5cf12406a0ead96e483 /src/emu/timer.c
parent4c1762ee26e8ebdcb0b7b22aa191ee4b087ec52b (diff)
Cleanups/version bump/added missing drivers.mame0128u5
Diffstat (limited to 'src/emu/timer.c')
-rw-r--r--src/emu/timer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/timer.c b/src/emu/timer.c
index be4bba78f9a..31632e7fd8e 100644
--- a/src/emu/timer.c
+++ b/src/emu/timer.c
@@ -160,13 +160,13 @@ INLINE emu_timer *timer_new(running_machine *machine)
timer_logtimers(machine);
fatalerror("Out of timers!");
}
-
+
/* pull an entry from the free list */
timer = global->freelist;
global->freelist = timer->next;
if (global->freelist == NULL)
global->freelist_tail = NULL;
-
+
/* set up the machine */
timer->machine = machine;
return timer;
@@ -288,7 +288,7 @@ void timer_init(running_machine *machine)
{
timer_private *global;
int i;
-
+
/* allocate global data */
global = machine->timer_data = auto_malloc(sizeof(*global));
memset(global, 0, sizeof(*global));