diff options
author | 2008-02-05 08:32:19 +0000 | |
---|---|---|
committer | 2008-02-05 08:32:19 +0000 | |
commit | d27c1b05d77a4ddf7d1e24deaf680a2febf7520d (patch) | |
tree | 0132b977cedc8a78fb9b6322a54c007b1352f51a | |
parent | eff321318a186c422d1daf8abfd8c7527d1733dd (diff) |
Cleanups, version bump, one more fix.mame0123
-rw-r--r-- | src/emu/video/crtc6845.c | 1 | ||||
-rw-r--r-- | src/mame/audio/irem.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/emu/video/crtc6845.c b/src/emu/video/crtc6845.c index 34eb9bcc78d..a1ea9a72bd4 100644 --- a/src/emu/video/crtc6845.c +++ b/src/emu/video/crtc6845.c @@ -91,6 +91,7 @@ void crtc6845_config(int which, const crtc6845_interface *intf) { crtc6845_state *chip = &crtc6845; + memset(chip, 0, sizeof(*chip)); crtc6845_init(); chip->intf = intf; diff --git a/src/mame/audio/irem.c b/src/mame/audio/irem.c index e537038cdea..dbdc9b33e6b 100644 --- a/src/mame/audio/irem.c +++ b/src/mame/audio/irem.c @@ -30,8 +30,8 @@ static SOUND_START( irem_audio ) /************************************* * - * External writes to the sound - * command register + * External writes to the sound + * command register * *************************************/ diff --git a/src/version.c b/src/version.c index 2913146c060..d8f9601a104 100644 --- a/src/version.c +++ b/src/version.c @@ -9,4 +9,4 @@ ***************************************************************************/ -const char build_version[] = "0.122u8 ("__DATE__")"; +const char build_version[] = "0.123 ("__DATE__")"; |