Log warning when falling back to OpenGL on windows

This commit is contained in:
Palana 2014-10-14 18:07:49 +02:00
parent 8b93ba1c53
commit 1df9bcfa49

View file

@ -1370,6 +1370,11 @@ int OBSBasic::ResetVideo()
if (IS_WIN32 && ret != OBS_VIDEO_SUCCESS) {
/* Try OpenGL if DirectX fails on windows */
if (astrcmpi(ovi.graphics_module, "libobs-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";
ret = AttemptToResetVideo(&ovi);
}