summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/dynadice.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/dynadice.c')
-rw-r--r--src/mame/drivers/dynadice.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/dynadice.c b/src/mame/drivers/dynadice.c
index 16ad8de21bb..f0c463088c2 100644
--- a/src/mame/drivers/dynadice.c
+++ b/src/mame/drivers/dynadice.c
@@ -42,8 +42,8 @@ struct _dynadice_state
{
/* memory pointers */
UINT8 * videoram;
-// UINT8 * nvram; // currently this uses generic nvram handling
-// UINT8 * paletteram; // currently this uses generic palette handling
+// UINT8 * nvram; // currently this uses generic nvram handling
+// UINT8 * paletteram; // currently this uses generic palette handling
/* video-related */
tilemap *bg_tilemap,*top_tilemap;
@@ -79,10 +79,10 @@ static WRITE8_DEVICE_HANDLER( sound_control_w )
D3 - /Reset
*/
- if ((data & 7) == 7)
+ if ((data & 7) == 7)
ay8910_address_w(device, 0, state->ay_data);
- if ((data & 7) == 6)
+ if ((data & 7) == 6)
ay8910_data_w(device, 0, state->ay_data);
}