summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/omegrace.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/omegrace.c')
-rw-r--r--src/mame/drivers/omegrace.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/omegrace.c b/src/mame/drivers/omegrace.c
index f86174ce210..27da8af56e2 100644
--- a/src/mame/drivers/omegrace.c
+++ b/src/mame/drivers/omegrace.c
@@ -573,10 +573,10 @@ static DRIVER_INIT( omegrace )
UINT8 *prom = memory_region(REGION_USER1);
/* Omega Race has two pairs of the state PROM output
- * lines swapped before going into the decoder.
- * Since all other avg/dvg games connect the PROM
- * in a consistent way to the decoder, we swap the bits
- * here. */
+ * lines swapped before going into the decoder.
+ * Since all other avg/dvg games connect the PROM
+ * in a consistent way to the decoder, we swap the bits
+ * here. */
for (i=0; i<memory_region_length(REGION_USER1); i++)
prom[i] = BITSWAP8(prom[i],7,6,5,4,1,0,3,2);
}