mirror of https://github.com/PCSX2/pcsx2.git
GSdx: Prevent Null Renderer from crashing in Linux.
This commit is contained in:
parent
2e1db411fa
commit
cfb61c71dd
|
@ -276,6 +276,8 @@ static int _GSopen(void** dsp, const char* title, GSRendererType renderer, int t
|
||||||
default:
|
default:
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
wnds.push_back(std::make_shared<GSWndDX>());
|
wnds.push_back(std::make_shared<GSWndDX>());
|
||||||
|
#else
|
||||||
|
wnds.push_back(std::make_shared<GSWndOGL>());
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue