projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdd5003
)
Fix -nographic on Arm.
author
pbrook
<pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 6 Feb 2006 16:05:19 +0000
(16:05 +0000)
committer
pbrook
<pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 6 Feb 2006 16:05:19 +0000
(16:05 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1747
c046a42c
-6fe2-441c-8c8c-
71466251a162
hw/pl110.c
patch
|
blob
|
history
diff --git
a/hw/pl110.c
b/hw/pl110.c
index 8a4d5807af0568fa29ce7b6ee471757947d46b4f..5a6638cbe572aa3f09e5aae75cbf1afbc4e28256 100644
(file)
--- a/
hw/pl110.c
+++ b/
hw/pl110.c
@@
-109,6
+109,8
@@
void pl110_update_display(void *opaque)
return;
switch (s->ds->depth) {
+ case 0:
+ return;
case 8:
fntable = pl110_draw_fn_8;
dest_width = 1;
@@
-130,7
+132,7
@@
void pl110_update_display(void *opaque)
dest_width = 4;
break;
default:
- fprintf(stderr, "
qemu
: Bad color depth\n");
+ fprintf(stderr, "
pl110
: Bad color depth\n");
exit(1);
}
if (s->cr & PL110_CR_BEBO)