summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devintrf.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-09-11 16:25:46 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-09-11 16:25:46 +0000
commitaa2b6bd29a0859160a436e0e46b65fde992208a6 (patch)
tree7181b0bc9c286f810c44767256e08398f5b881ae /src/emu/devintrf.c
parentae2d1ed21ae633a1746266f32ea5e7d36397b55e (diff)
Cleanups and version bump.mame0127u3
Diffstat (limited to 'src/emu/devintrf.c')
-rw-r--r--src/emu/devintrf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/devintrf.c b/src/emu/devintrf.c
index 4ee06910ed5..6d84bfd8623 100644
--- a/src/emu/devintrf.c
+++ b/src/emu/devintrf.c
@@ -488,7 +488,7 @@ void device_list_start(running_machine *machine)
device->region = memory_region(machine, device->tag);
device->regionbytes = memory_region_length(machine, device->tag);
}
-
+
/* iterate until we've started everything */
while (numstarted < devcount)
{
@@ -502,7 +502,7 @@ void device_list_start(running_machine *machine)
device->started = TRUE;
numstarted += device->started;
}
-
+
/* if we didn't start anything new, we're in trouble */
if (numstarted == prevstarted)
fatalerror("Circular dependency in device startup; unable to start %d/%d devices\n", devcount - numstarted, devcount);