summaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorbellard2005-04-06 22:32:23 +0200
committerbellard2005-04-06 22:32:23 +0200
commitd827220bbf2b4d56af6161753e9f88db400f6b63 (patch)
treea770135f4c85ec0040cb82eefafc257d0a52dae8 /vl.c
parentSCSI support (Blue Swirl) (diff)
downloadqemu-d827220bbf2b4d56af6161753e9f88db400f6b63.tar.gz
qemu-d827220bbf2b4d56af6161753e9f88db400f6b63.tar.xz
qemu-d827220bbf2b4d56af6161753e9f88db400f6b63.zip
use standard TCX display size for sparc
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1345 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/vl.c b/vl.c
index 9f8b8a6b99..46a36adf59 100644
--- a/vl.c
+++ b/vl.c
@@ -1,7 +1,7 @@
/*
* QEMU System Emulator
*
- * Copyright (c) 2003-2004 Fabrice Bellard
+ * Copyright (c) 2003-2005 Fabrice Bellard
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -135,8 +135,13 @@ int pci_enabled = 1;
int prep_enabled = 0;
int rtc_utc = 1;
int cirrus_vga_enabled = 1;
+#ifdef TARGET_SPARC
+int graphic_width = 1024;
+int graphic_height = 768;
+#else
int graphic_width = 800;
int graphic_height = 600;
+#endif
int graphic_depth = 15;
int full_screen = 0;
TextConsole *vga_console;