summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-06-25 23:03:25 -0700
committerMike Pavone <pavone@retrodev.com>2013-06-25 23:03:25 -0700
commit1a1c4c4d151de9f058d829d794c7d99780291144 (patch)
tree8a942c965524b85b3dc69634662f5748bf77e57e
parent3caaed844a05a897e44df0685abfcbd1b162f862 (diff)
Change default resolution to 640x480
-rw-r--r--blastem.c2
1 files changed, 1 insertions, 1 deletions
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) {