From 0a99762fecf60df9be62bc61f6bc979cf2188be5 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Sun, 11 Oct 2020 15:59:40 +0100 Subject: [PATCH] Force 3DS to 320x240 by default I kind of want to avoid hacks like this, but I suppose I can find a proper way to do this in the future. --- src/Config.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Config.cpp b/src/Config.cpp index 2f0e1119..4e355d80 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -63,6 +63,10 @@ void DefaultConfigData(CONFIGDATA *conf) // Fun fact: The Linux port added this line: // conf->display_mode = 1; +#ifdef _3DS + conf->display_mode = 1; +#endif + // Reset joystick settings (as these can't simply be set to 0) conf->bJoystick = TRUE; conf->joystick_button[0] = 2;