From a59bd2eb00f37f6a85582ac8cbf4e74709d21f17 Mon Sep 17 00:00:00 2001 From: oddMLan Date: Thu, 22 Jul 2021 06:04:34 -0700 Subject: [PATCH] Fix oversight in OSD statistics (GLideNUI-Qt) It wasn't saving the setting properly with custom game settings. --- src/GLideNUI/Settings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/GLideNUI/Settings.cpp b/src/GLideNUI/Settings.cpp index bc768509..2191589d 100644 --- a/src/GLideNUI/Settings.cpp +++ b/src/GLideNUI/Settings.cpp @@ -507,6 +507,7 @@ void saveCustomRomSettings(const QString & _strIniFolder, const char * _strRomNa WriteCustomSetting2(onScreenDisplay, showPercent, percent); WriteCustomSetting2(onScreenDisplay, showInternalResolution, internalResolution); WriteCustomSetting2(onScreenDisplay, showRenderingResolution, renderingResolution); + WriteCustomSetting2(onScreenDisplay, showStatistics, statistics); WriteCustomSetting2(onScreenDisplay, osdPos, pos); settings.endGroup();