From bd1a5b81c946e4da419eca85d3bd11fd63bc36a7 Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Wed, 25 Aug 2021 17:27:24 -0400
Subject: [PATCH] This was stupid and I hate it.

---
 indra/newview/llappviewer.cpp | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index a2b507696b0..ad3020b4cfc 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -3487,13 +3487,10 @@ void LLAppViewer::writeSystemInfo()
 	gDebugInfo["FirstRunThisInstall"] = gSavedSettings.getBOOL("FirstRunThisInstall");
     gDebugInfo["StartupState"] = LLStartUp::getStartupStateString();
 
-	if (gViewerWindow && gViewerWindow->getWindow())
+	std::vector<std::string> resolutions = LLWindow::getDisplaysResolutionList();
+	for (auto res_iter : resolutions)
 	{
-		std::vector<std::string> resolutions = gViewerWindow->getWindow()->getDisplaysResolutionList();
-		for (auto res_iter : resolutions)
-		{
-			gDebugInfo["DisplayInfo"].append(res_iter);
-		}
+		gDebugInfo["DisplayInfo"].append(res_iter);
 	}
 
 	writeDebugInfo(); // Save out debug_info.log early, in case of crash.
-- 
GitLab