mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
15 lines
386 B
Plaintext
15 lines
386 B
Plaintext
$NetBSD: patch-ak,v 1.3 2009/08/29 19:26:01 wiz Exp $
|
|
|
|
--- WinQuake/vid_x.c.orig Tue Dec 21 18:40:22 1999
|
|
+++ WinQuake/vid_x.c Fri Jan 28 23:34:06 2000
|
|
@@ -711,6 +711,9 @@
|
|
void VID_Shutdown (void)
|
|
{
|
|
Con_Printf("VID_Shutdown\n");
|
|
+ /* if display hasn't been initialised, we don't have to close it */
|
|
+ if (!x_disp)
|
|
+ return;
|
|
XAutoRepeatOn(x_disp);
|
|
XCloseDisplay(x_disp);
|
|
}
|