From 0ecf762d303b210b3aa846098f44491ef8fb0f5c Mon Sep 17 00:00:00 2001 From: Rosalie Wanders Date: Sun, 16 Nov 2025 17:03:46 +0100 Subject: [PATCH] 3rdParty: apply zero init variable patch to mupen64plus-video-GLideN64 --- .../mupen64plus-video-GLideN64/src/GLideNUI/ConfigDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/3rdParty/mupen64plus-video-GLideN64/src/GLideNUI/ConfigDialog.cpp b/Source/3rdParty/mupen64plus-video-GLideN64/src/GLideNUI/ConfigDialog.cpp index ecde4153..7821d640 100644 --- a/Source/3rdParty/mupen64plus-video-GLideN64/src/GLideNUI/ConfigDialog.cpp +++ b/Source/3rdParty/mupen64plus-video-GLideN64/src/GLideNUI/ConfigDialog.cpp @@ -197,7 +197,7 @@ void ConfigDialog::_init(bool reInit, bool blockCustomSettings) ui->overscanPalBottomSpinBox->setValue(config.frameBufferEmulation.overscanPAL.bottom); QStringList fullscreenModesList, fullscreenRatesList; - int fullscreenMode, fullscreenRate; + int fullscreenMode = 0, fullscreenRate = 0; fillFullscreenResolutionsList(fullscreenModesList, fullscreenMode, fullscreenRatesList, fullscreenRate); #ifdef M64P_GLIDENUI if (fullscreenModesList.isEmpty() && fullscreenRatesList.isEmpty()) {