aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorneonloop2023-01-15 18:33:44 +0000
committerneonloop2023-01-15 18:33:44 +0000
commit41bc724ebd2edbdded2a0e0b8c6aa144586d6ebd (patch)
tree42babeb7a5baf9ec0217482e07d2f28c4464d60e /main.c
parent798c44a8965e5533764edb9ccae05a5929b01512 (diff)
downloadpicoarch-41bc724ebd2edbdded2a0e0b8c6aa144586d6ebd.tar.gz
picoarch-41bc724ebd2edbdded2a0e0b8c6aa144586d6ebd.tar.bz2
picoarch-41bc724ebd2edbdded2a0e0b8c6aa144586d6ebd.zip
Fixes mame2000 vector games, changes mame2000 default to aspect
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index c4792d8..6625133 100644
--- a/main.c
+++ b/main.c
@@ -222,7 +222,8 @@ void set_defaults(void)
scale_size = SCALE_SIZE_CROP;
scale_filter = SCALE_FILTER_SMOOTH;
- if (!strcmp(core_name, "gambatte")) {
+ if (!strcmp(core_name, "gambatte") ||
+ !strcmp(core_name, "mame2000")) {
scale_size = SCALE_SIZE_ASPECT;
scale_filter = SCALE_FILTER_SMOOTH;
}