From 924cf92e996ca5485617912aa445467360ab6a4c Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Mon, 13 Mar 2023 19:08:12 -0400
Subject: [PATCH] Fix check for graphics reset notification

---
 indra/newview/llstartup.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 81b96fae338..405de4752bc 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -430,7 +430,7 @@ bool idle_startup()
 		{
 			LLNotificationsUtil::add("DisplaySetToSafe");
 		}
-		else if ((gSavedSettings.getS32("LastFeatureVersion") < LLFeatureManager::getInstance()->getVersion()) &&
+		else if ((gSavedSettings.getS32("LastFeatureVersion") != LLFeatureManager::getInstance()->getVersion()) &&
 				 (gSavedSettings.getS32("LastFeatureVersion") != 0))
 		{
 			LLNotificationsUtil::add("DisplaySetToRecommendedFeatureChange");
-- 
GitLab