diff options
author | 2020-01-20 00:18:53 +0100 | |
---|---|---|
committer | 2020-01-20 00:18:53 +0100 | |
commit | 5f03cca7ed75b525fd59048e0b181484410b1760 (patch) | |
tree | bde26b717e5c77c3f4bf3e724a769f1db19ac0df | |
parent | 5a5a0a2e65dab40d1ddf9834ecba96ad9fe8d706 (diff) |
Remove printf debugging. (nw)
-rw-r--r-- | src/mame/drivers/galaxian.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mame/drivers/galaxian.cpp b/src/mame/drivers/galaxian.cpp index f4dd12f21d1..24f1b79c959 100644 --- a/src/mame/drivers/galaxian.cpp +++ b/src/mame/drivers/galaxian.cpp @@ -826,15 +826,10 @@ WRITE8_MEMBER(galaxian_state::konami_sound_filter_w) /* the offset is used as data, 6 channels * 2 bits each */ /* AV0 .. AV5 ==> AY8910 #2 - 3C */ /* AV6 .. AV11 ==> AY8910 #1 - 3D */ - static int last = 0; - if (offset != last) - printf("filter %04x\n", offset); for (int which = 0; which < 2; which++) { if (m_ay8910[which] != nullptr) { - if (offset != last) - printf("filter%d %04x\n", which, (offset >> (6*(1-which))) & 0x3f); for (int flt = 0; flt < 6; flt++) { const int fltnum = (flt + 6 * which); @@ -846,7 +841,6 @@ WRITE8_MEMBER(galaxian_state::konami_sound_filter_w) } } } - last = offset; } } |