From b00442a1c4f89828fb461029cc6d5722867dbf52 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Wed, 7 Mar 2018 15:23:00 -0600 Subject: [PATCH] Change width/height to 3x apple window size --- src/option.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/option.c b/src/option.c index 2cad49f..0e01d91 100644 --- a/src/option.c +++ b/src/option.c @@ -38,8 +38,8 @@ static char error_buffer[ERRBUF_SIZE] = ""; * 640x480, but because the Apple II has a 4.375:3 aspect ratio, we had * to bump up the width to a number that respects that ratio. */ -static int width = 700; -static int height = 480; +static int width = 840; +static int height = 576; static int flags = 0;