From 005f8c7d1d416925b58e2ba4ab399611e735742d Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 19 Oct 2021 12:00:02 +1000 Subject: [PATCH] Config: Fix zoom/stretch options not updating on Apply --- pcsx2/Config.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pcsx2/Config.h b/pcsx2/Config.h index 2ce15f5ec1..b85ee9fd39 100644 --- a/pcsx2/Config.h +++ b/pcsx2/Config.h @@ -361,7 +361,15 @@ struct Pcsx2Config OpEqu(FrameratePAL) && OpEqu(FramesToDraw) && - OpEqu(FramesToSkip); + OpEqu(FramesToSkip) && + + OpEqu(AspectRatio) && + OpEqu(FMVAspectRatioSwitch) && + + OpEqu(Zoom) && + OpEqu(StretchY) && + OpEqu(OffsetX) && + OpEqu(OffsetY); } bool operator!=(const GSOptions& right) const