mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
- Bug 5083 - Cross compiling for 64bit is missing libcurl.a
- Fix a compiler warning for cross compile
This commit is contained in:
parent
9dc32d55e2
commit
66f0777552
2 changed files with 1 additions and 3 deletions
BIN
code/libs/win64/libcurl.a
Normal file
BIN
code/libs/win64/libcurl.a
Normal file
Binary file not shown.
|
@ -1149,9 +1149,7 @@ void R_Init( void ) {
|
|||
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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue