diff options
author | Juliusz Chroboczek <jch@pps.jussieu.fr> | 2006-11-06 00:30:09 +0100 |
---|---|---|
committer | Juliusz Chroboczek <jch@pps.jussieu.fr> | 2006-11-06 00:30:09 +0100 |
commit | 6b2c65fdd169037c6ede250d4a8fec3d29a080ae (patch) | |
tree | ef74a5269a99b59bab77ca6c1d5f016454324009 | |
parent | 8deaaa312ad7f9b492a2ae8ad17d74650112c25c (diff) |
Fix typo in Xvesa: incorrect reporting of DAC capabilities.
-rw-r--r-- | hw/kdrive/vesa/vbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/kdrive/vesa/vbe.c b/hw/kdrive/vesa/vbe.c index 5fbd8abef..08f0b037c 100644 --- a/hw/kdrive/vesa/vbe.c +++ b/hw/kdrive/vesa/vbe.c @@ -101,7 +101,7 @@ VbeReportVib(Vm86InfoPtr vi, VbeInfoBlock *vib) } ErrorF(")\n"); ErrorF("DAC is %s, controller is %sVGA compatible%s\n", - (vib->Capabilities[0]&1)?"fixed":"switchable", + (vib->Capabilities[0]&1)?"switchable":"fixed", (vib->Capabilities[0]&2)?"not ":"", (vib->Capabilities[0]&3)?", RAMDAC causes snow":""); ErrorF("Total memory: %lu kilobytes\n", 64L*vib->TotalMemory); |