|
|
@@ -1421,13 +1421,13 @@ int OBSBasic::ResetVideo()
|
|
|
ret = AttemptToResetVideo(&ovi);
|
|
|
if (IS_WIN32 && ret != OBS_VIDEO_SUCCESS) {
|
|
|
/* Try OpenGL if DirectX fails on windows */
|
|
|
- if (astrcmpi(ovi.graphics_module, "libobs-opengl") != 0) {
|
|
|
+ if (astrcmpi(ovi.graphics_module, DL_OPENGL) != 0) {
|
|
|
blog(LOG_WARNING, "Failed to initialize obs video (%d) "
|
|
|
"with graphics_module='%s', retrying "
|
|
|
"with graphics_module='%s'",
|
|
|
ret, ovi.graphics_module,
|
|
|
- "libobs-opengl");
|
|
|
- ovi.graphics_module = "libobs-opengl";
|
|
|
+ DL_OPENGL);
|
|
|
+ ovi.graphics_module = DL_OPENGL;
|
|
|
ret = AttemptToResetVideo(&ovi);
|
|
|
}
|
|
|
}
|