From 0eef029860fec8f4ef216970b748575229c3cefa Mon Sep 17 00:00:00 2001 From: ShutOstrich <132171977+ShutOstrich@users.noreply.github.com> Date: Mon, 1 May 2023 21:57:54 +0200 Subject: [PATCH] Disable Bilinear Filtering --- Classes/PCSX2GameCore.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/PCSX2GameCore.mm b/Classes/PCSX2GameCore.mm index cbf1803..577aeac 100644 --- a/Classes/PCSX2GameCore.mm +++ b/Classes/PCSX2GameCore.mm @@ -261,6 +261,7 @@ - (void)setupEmulation si.SetBoolValue("EmuCore/Speedhacks", "IntcStat", true); si.SetBoolValue("EmuCore/Speedhacks", "WaitLoop", true); si.SetIntValue("EmuCore/GS", "FramesToDraw", 2); + si.SetIntValue("EmuCore/GS", "linear_present_mode", 0); si.SetIntValue("EmuCore/GS", "upscale_multiplier", 1); si.SetBoolValue("EmuCore/GS", "FrameLimitEnable", true); si.SetBoolValue("EmuCore/GS", "SyncToHostRefreshRate",false);