* 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:
gregory.hainaut 2010-06-06 22:25:11 +00:00
parent 6fdb282c81
commit a849202d28
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ int GSOpenWindow2(void *pDsp, u32 flags)
void GSCloseWindow()
{
XCloseDisplay(display);
if (display != NULL)
XCloseDisplay(display);
}
void GSProcessMessages()