summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/scramble.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/scramble.c')
-rw-r--r--src/mame/machine/scramble.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/scramble.c b/src/mame/machine/scramble.c
index d98ec1027d8..9ddc246b03a 100644
--- a/src/mame/machine/scramble.c
+++ b/src/mame/machine/scramble.c
@@ -597,8 +597,8 @@ DRIVER_INIT( hustlerd )
/* the first ROM of the second CPU has data lines D0 and D1 swapped. Decode it. */
offs_t A;
UINT8 *rom = machine->region("audiocpu")->base();
-
-
+
+
for (A = 0;A < 0x0800;A++)
rom[A] = BITSWAP8(rom[A],7,6,5,4,3,2,0,1);
}