qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT f22f5b0] cirrus_vga: also assign gr0/1 when writt


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT f22f5b0] cirrus_vga: also assign gr0/1 when writtingshadow_gr0/1
Date: Mon, 05 Oct 2009 14:52:43 -0000

From: Juan Quintela <address@hidden>

This is a regression/bug caused by previous vga_cleanup.  This fixes
Ubuntu installer reported by:
         Pierre Riteau

Signed-off-by: Juan Quintela <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>

diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c
index 7e95f10..ae4be82 100644
--- a/hw/cirrus_vga.c
+++ b/hw/cirrus_vga.c
@@ -1490,9 +1490,11 @@ cirrus_vga_write_gr(CirrusVGAState * s, unsigned 
reg_index, int reg_value)
 #endif
     switch (reg_index) {
     case 0x00:                 // Standard VGA, BGCOLOR 0x000000ff
+       s->vga.gr[reg_index] = reg_value & gr_mask[reg_index];
        s->cirrus_shadow_gr0 = reg_value;
        break;
     case 0x01:                 // Standard VGA, FGCOLOR 0x000000ff
+       s->vga.gr[reg_index] = reg_value & gr_mask[reg_index];
        s->cirrus_shadow_gr1 = reg_value;
        break;
     case 0x02:                 // Standard VGA




reply via email to

[Prev in Thread] Current Thread [Next in Thread]