[quake3-commits] r2091 - in trunk/code: libs/win64 renderer
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Jul 18 12:32:36 EDT 2011
Author: thilo
Date: 2011-07-18 12:32:36 -0400 (Mon, 18 Jul 2011)
New Revision: 2091
Added:
trunk/code/libs/win64/libcurl.a
Modified:
trunk/code/renderer/tr_init.c
Log:
- Bug 5083 - Cross compiling for 64bit is missing libcurl.a
- Fix a compiler warning for cross compile
Added: trunk/code/libs/win64/libcurl.a
===================================================================
(Binary files differ)
Property changes on: trunk/code/libs/win64/libcurl.a
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/code/renderer/tr_init.c
===================================================================
--- trunk/code/renderer/tr_init.c 2011-07-18 14:56:57 UTC (rev 2090)
+++ trunk/code/renderer/tr_init.c 2011-07-18 16:32:36 UTC (rev 2091)
@@ -1149,9 +1149,7 @@
Com_Memset( &tess, 0, sizeof( tess ) );
if(sizeof(glconfig_t) != 11332)
- {
- ri.Error( ERR_FATAL, "Mod ABI incompatible: sizeof(glconfig_t) == %zd != 11332", sizeof(glconfig_t));
- }
+ ri.Error( ERR_FATAL, "Mod ABI incompatible: sizeof(glconfig_t) == %u != 11332", (unsigned int) sizeof(glconfig_t));
// Swap_Init();
More information about the quake3-commits
mailing list