From: Juan Quintela Date: Wed, 2 Dec 2009 10:49:40 +0000 (+0100) Subject: ac97: recalculate active after loadvm X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7626f39fd5041e4b8fe7739132efce9916399704;p=qemu.git ac97: recalculate active after loadvm Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- diff --git a/hw/ac97.c b/hw/ac97.c index 36aab8ae31..e89a56a7fc 100644 --- a/hw/ac97.c +++ b/hw/ac97.c @@ -1242,6 +1242,9 @@ static int ac97_load (QEMUFile *f, void *opaque, int version_id) V_ (AC97_Line_In_Volume_Mute, AUD_MIXER_LINE_IN); #undef V_ #endif + active[PI_INDEX] = !!(s->bm_regs[PI_INDEX].cr & CR_RPBM); + active[PO_INDEX] = !!(s->bm_regs[PO_INDEX].cr & CR_RPBM); + active[MC_INDEX] = !!(s->bm_regs[MC_INDEX].cr & CR_RPBM); reset_voices (s, active); s->bup_flag = 0;