diff options
author | malc | 2009-11-18 17:17:03 +0100 |
---|---|---|
committer | malc | 2009-11-18 17:22:57 +0100 |
commit | cd7aafcb8ddb4250a69866a5df9304dacbc6d9c5 (patch) | |
tree | 3be92d4841d1b3bd0b5e470f97ef9c3e29800799 | |
parent | audio: Remove conditional around sw which can not be NULL (diff) | |
download | qemu-cd7aafcb8ddb4250a69866a5df9304dacbc6d9c5.tar.gz qemu-cd7aafcb8ddb4250a69866a5df9304dacbc6d9c5.tar.xz qemu-cd7aafcb8ddb4250a69866a5df9304dacbc6d9c5.zip |
sb16: remove highspeed reset code
It was never enabled in any of the public builds anyway.
Noticed by Steve Grubb.
Signed-off-by: malc <av1474@comtv.ru>
-rw-r--r-- | hw/sb16.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -889,14 +889,7 @@ static IO_WRITE_PROTO (dsp_write) switch (val) { case 0x00: if (s->v2x6 == 1) { - if (0 && s->highspeed) { - s->highspeed = 0; - qemu_irq_lower (s->pic); - control (s, 0); - } - else { - reset (s); - } + reset (s); } s->v2x6 = 0; break; |