shithub: qk2

Download patch

ref: db47532c3fa9080a1422fcc097f565da453d6cbe
parent: 468277a38c028f5f00c89379c1cc705d127e9e84
author: Konstantinn Bonnet <qu7uux@gmail.com>
date: Fri Mar 27 19:49:26 EDT 2015

fix multiple brainfarts

--- a/client/cl_main.c
+++ b/client/cl_main.c
@@ -1782,10 +1782,6 @@
 	// all archived variables will now be loaded
 
 	Con_Init ();
-/*	
-	VID_Init ();
-	S_Init ();	// sound must be initialized after window is created
-*/
 	S_Init ();	
 	VID_Init ();
 	
--- a/plan9/cd_9.c
+++ b/plan9/cd_9.c
@@ -374,7 +374,7 @@
 
 	if((cdfile = open(cd_dev->string, OREAD)) < 0){
 		fprint(2, "CDAudio_Init: %r\n");
-		Com_Printf("CDAudio_Init: failed to open \"%s\"\n", cd_dev);
+		Com_Printf("CDAudio_Init: failed to open \"%s\"\n", cd_dev->string);
 		cdfile = -1;
 		return -1;
 	}
--- a/plan9/q_sh9.c
+++ b/plan9/q_sh9.c
@@ -284,8 +284,8 @@
 {
 	long n;
 
-	if(fdir = -1){
-		Sys_Error("Sys_FindNext without open");
+	if(fdir == -1){
+		Sys_Error("Sys_FindNext without open\n");
 		return nil;
 	}
 	while((n = dirread(fdir, &ddir)) > 0){