From 2001b949457e536505d205add24b14305df4a76f Mon Sep 17 00:00:00 2001 From: Robert Krawczyk Date: Fri, 12 Mar 2021 23:31:22 +0100 Subject: [PATCH] Fix for https://github.com/rebtd7/FF13Fix/issues/46 --- d3d9ex/AutoFix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d3d9ex/AutoFix.cpp b/d3d9ex/AutoFix.cpp index 282f56f..54c41ed 100644 --- a/d3d9ex/AutoFix.cpp +++ b/d3d9ex/AutoFix.cpp @@ -81,7 +81,7 @@ HRESULT MainContext::SetViewport(IDirect3DDevice9* pIDirect3DDevice9, CONST D3DV if (pViewport) { D3DVIEWPORT9* vp = const_cast(pViewport); - if (pViewport->Width > 1280 && pViewport->Height > 720) + if (pViewport->Width > 1920 && pViewport->Height > 1080) { vp->Width--; vp->X++;