Commit d827220bbf2b4d56af6161753e9f88db400f6b63
1 parent
2f275b8f
use standard TCX display size for sparc
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1345 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
6 additions
and
1 deletions
vl.c
1 | 1 | /* |
2 | 2 | * QEMU System Emulator |
3 | 3 | * |
4 | - * Copyright (c) 2003-2004 Fabrice Bellard | |
4 | + * Copyright (c) 2003-2005 Fabrice Bellard | |
5 | 5 | * |
6 | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | 7 | * of this software and associated documentation files (the "Software"), to deal |
... | ... | @@ -135,8 +135,13 @@ int pci_enabled = 1; |
135 | 135 | int prep_enabled = 0; |
136 | 136 | int rtc_utc = 1; |
137 | 137 | int cirrus_vga_enabled = 1; |
138 | +#ifdef TARGET_SPARC | |
139 | +int graphic_width = 1024; | |
140 | +int graphic_height = 768; | |
141 | +#else | |
138 | 142 | int graphic_width = 800; |
139 | 143 | int graphic_height = 600; |
144 | +#endif | |
140 | 145 | int graphic_depth = 15; |
141 | 146 | int full_screen = 0; |
142 | 147 | TextConsole *vga_console; | ... | ... |