mirror of https://github.com/PCSX2/pcsx2.git
* Simple fix. Avoid a segfault with GSnull and GSoutput disabled.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3177 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
6fdb282c81
commit
a849202d28
|
@ -46,7 +46,8 @@ int GSOpenWindow2(void *pDsp, u32 flags)
|
|||
|
||||
void GSCloseWindow()
|
||||
{
|
||||
XCloseDisplay(display);
|
||||
if (display != NULL)
|
||||
XCloseDisplay(display);
|
||||
}
|
||||
|
||||
void GSProcessMessages()
|
||||
|
|
Loading…
Reference in New Issue