diff options
Diffstat (limited to 'src/mame/machine/scramble.cpp')
-rw-r--r-- | src/mame/machine/scramble.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/scramble.cpp b/src/mame/machine/scramble.cpp index 2584ed3bae5..fd9645ee105 100644 --- a/src/mame/machine/scramble.cpp +++ b/src/mame/machine/scramble.cpp @@ -448,7 +448,7 @@ void scramble_state::init_hustler() { int bits[8]; for (int i = 0;i < 8;i++) - bits[i] = BIT(A, i);; + bits[i] = BIT(A, i); uint8_t xormask = 0xff; if (bits[0] ^ bits[1]) xormask ^= 0x01; |