Преглед на файлове

UI: Fix potential crash with unsupported video cards

If a video card is unsupported, it will attempt to initialize the stats
window, querying values from a video subsystem that doesn't exist, and
crash instead of alerting the user that their hardware is unsupported.
jp9000 преди 8 години
родител
ревизия
36394ab08d
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      UI/window-basic-main.cpp

+ 2 - 1
UI/window-basic-main.cpp

@@ -2774,7 +2774,8 @@ int OBSBasic::ResetVideo()
 			ResizeProgram(ovi.base_width, ovi.base_height);
 	}
 
-	OBSBasicStats::InitializeValues();
+	if (ret == OBS_VIDEO_SUCCESS)
+		OBSBasicStats::InitializeValues();
 
 	return ret;
 }