From ed4aae2d18af7a52800ed6fb224a53367796b324 Mon Sep 17 00:00:00 2001 From: hunterk Date: Mon, 11 Nov 2019 12:48:13 -0600 Subject: [PATCH 1/2] switch to nearest neighbor scaling as default --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index a8f4049b64..fba44b8c49 100644 --- a/config.def.h +++ b/config.def.h @@ -317,7 +317,7 @@ #endif /* Smooths picture. */ -#define DEFAULT_VIDEO_SMOOTH true +#define DEFAULT_VIDEO_SMOOTH false /* On resize and fullscreen, rendering area will stay 4:3 */ #define DEFAULT_FORCE_ASPECT true From b142a44fd0ab48cbad3528b0086f007e3ff38cb1 Mon Sep 17 00:00:00 2001 From: hunterk Date: Mon, 11 Nov 2019 12:56:55 -0600 Subject: [PATCH 2/2] keep bilinear filtering for low-res targets --- config.def.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.def.h b/config.def.h index fba44b8c49..703d8a8ca3 100644 --- a/config.def.h +++ b/config.def.h @@ -317,7 +317,11 @@ #endif /* Smooths picture. */ +#if defined(_3DS) || defined(GEKKO) || defined(HW_RVL) || defined(PSP) || defined(VITA) || defined(SN_TARGET_PSP2) || defined(PS2) || defined(_XBOX) +#define DEFAULT_VIDEO_SMOOTH true +#else #define DEFAULT_VIDEO_SMOOTH false +#endif /* On resize and fullscreen, rendering area will stay 4:3 */ #define DEFAULT_FORCE_ASPECT true