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.
This commit is contained in:
jp9000 2017-06-24 09:14:46 -07:00
parent aafe08db5c
commit 36394ab08d

View file

@ -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;
}