GSdx: Prevent Null Renderer from crashing in Linux.

This commit is contained in:
Shanoah Alkire 2018-11-16 14:50:25 -08:00
parent 2e1db411fa
commit cfb61c71dd
1 changed files with 2 additions and 0 deletions

View File

@ -276,6 +276,8 @@ static int _GSopen(void** dsp, const char* title, GSRendererType renderer, int t
default:
#ifdef _WIN32
wnds.push_back(std::make_shared<GSWndDX>());
#else
wnds.push_back(std::make_shared<GSWndOGL>());
#endif
break;
}