[quake3-commits] r2234 - trunk/code/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Wed Apr 4 13:21:17 EDT 2012


Author: ztm
Date: 2012-04-04 13:21:17 -0400 (Wed, 04 Apr 2012)
New Revision: 2234

Modified:
   trunk/code/client/cl_main.c
Log:
#5485 - Use Sys_LoadDll to search in the local directory for the fallback default renderer. Patch by Harley Laue.

Modified: trunk/code/client/cl_main.c
===================================================================
--- trunk/code/client/cl_main.c	2012-04-04 17:16:11 UTC (rev 2233)
+++ trunk/code/client/cl_main.c	2012-04-04 17:21:17 UTC (rev 2234)
@@ -3204,7 +3204,7 @@
 		Cvar_ForceReset("cl_renderer");
 
 		Com_sprintf(dllName, sizeof(dllName), "renderer_opengl1_" ARCH_STRING DLL_EXT);
-		rendererLib = Sys_LoadLibrary(dllName);
+		rendererLib = Sys_LoadDll(dllName, qfalse);
 	}
 
 	if(!rendererLib)



More information about the quake3-commits mailing list