From: Helge Deller <deller@gmx.de>
To: qemu-devel@nongnu.org, Sven Schnelle <svens@stackframe.org>
Subject: [PATCH] hw/artist: Reduce default artist screen size to 800x600 pixel
Date: Mon, 2 Mar 2020 20:14:09 +0100 [thread overview]
Message-ID: <20200302191409.GA4512@ls3530.fritz.box> (raw)
Reduce the default emulated screen size to 800x600 pixel instead of
1280x1024 pixel. With the bigger screen size the emulated graphic card
isn't fully visible on my laptop display, and if people want bigger
sizes it's possible to define it on the command line.
Signed-off-by: Helge Deller <deller@gmx.de>
diff --git a/hw/display/artist.c b/hw/display/artist.c
index 65be9e3554..74cff24d7b 100644
--- a/hw/display/artist.c
+++ b/hw/display/artist.c
@@ -1418,8 +1412,8 @@ static const VMStateDescription vmstate_artist = {
};
static Property artist_properties[] = {
- DEFINE_PROP_UINT16("width", ARTISTState, width, 1280),
- DEFINE_PROP_UINT16("height", ARTISTState, height, 1024),
+ DEFINE_PROP_UINT16("width", ARTISTState, width, 800),
+ DEFINE_PROP_UINT16("height", ARTISTState, height, 600),
DEFINE_PROP_UINT16("depth", ARTISTState, depth, 8),
DEFINE_PROP_END_OF_LIST(),
};
next reply other threads:[~2020-03-02 19:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-02 19:14 Helge Deller [this message]
2020-03-02 23:26 ` [PATCH] hw/artist: Reduce default artist screen size to 800x600 pixel Philippe Mathieu-Daudé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200302191409.GA4512@ls3530.fritz.box \
--to=deller@gmx.de \
--cc=qemu-devel@nongnu.org \
--cc=svens@stackframe.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).