From dc9879db9285394741d15ad56ddebb8c2c542d14 Mon Sep 17 00:00:00 2001 From: David Gow Date: Mon, 4 Sep 2023 11:56:11 +0800 Subject: [PATCH] Quirks: Mark of the Ninja (humble bundle) needs OpenGL scaling disabled. --- src/SDL12_compat.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/SDL12_compat.c b/src/SDL12_compat.c index 0c1c4fb86..f97944f6f 100644 --- a/src/SDL12_compat.c +++ b/src/SDL12_compat.c @@ -1274,6 +1274,10 @@ static QuirkEntryType quirks[] = { {"fillets", "SDL12COMPAT_ALLOW_SYSWM", "0"}, {"fillets", "SDL12COMPAT_COMPATIBILITY_AUDIOCVT", "1"}, + /* Mark of the Ninja doesn't work with OpenGL scaling */ + {"ninja-bin32", "SDL12COMPAT_OPENGL_SCALING", "0"}, + {"ninja-bin64", "SDL12COMPAT_OPENGL_SCALING", "0"}, + /* Misuses SDL_AudioCVT */ {"pink-pony", "SDL12COMPAT_COMPATIBILITY_AUDIOCVT", "1"}, {"pink-pony.bin", "SDL12COMPAT_COMPATIBILITY_AUDIOCVT", "1"},