From 1a1c4c4d151de9f058d829d794c7d99780291144 Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Tue, 25 Jun 2013 23:03:25 -0700 Subject: Change default resolution to 640x480 --- blastem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blastem.c b/blastem.c index 2962f40..757f5d9 100644 --- a/blastem.c +++ b/blastem.c @@ -1746,7 +1746,7 @@ int main(int argc, char ** argv) } } update_title(); - width = width < 320 ? 320 : width; + width = width < 320 ? 640 : width; height = height < 240 ? (width/320) * 240 : height; uint32_t fps = 60; if (version_reg & 0x40) { -- cgit v1.2.3