QuakeLive fix-ups.

This commit is contained in:
Chris Brooke 2012-07-31 18:16:47 +01:00 committed by Garux
parent 2d96a0053e
commit 777cd9e09a
3 changed files with 3 additions and 3 deletions

View File

@ -1286,7 +1286,7 @@ int LoadMapFromBSP(struct quakefile_s *qf)
Q3_FreeMaxBSP(); Q3_FreeMaxBSP();
} //end if } //end if
//Quake3 BSP file //Quake3 BSP file
if (idheader.ident == Q3_BSP_IDENT && idheader.version == Q3_BSP_VERSION) else if (idheader.ident == Q3_BSP_IDENT && idheader.version == Q3_BSP_VERSION)
{ {
ResetMapLoading(); ResetMapLoading();
Q3_LoadMapFromBSP(qf); Q3_LoadMapFromBSP(qf);

View File

@ -627,7 +627,7 @@ void CM_LoadMap( const char *name, qboolean clientload, int *checksum ) {
((int *)&header)[i] = LittleLong ( ((int *)&header)[i]); ((int *)&header)[i] = LittleLong ( ((int *)&header)[i]);
} }
if ( header.version != BSP_VERSION ) { if ( header.version != BSP_VERSION && header.version != BSP_VERSION_QL ) {
Com_Error (ERR_DROP, "CM_LoadMap: %s has wrong version number (%i should be %i)" Com_Error (ERR_DROP, "CM_LoadMap: %s has wrong version number (%i should be %i)"
, name, header.version, BSP_VERSION ); , name, header.version, BSP_VERSION );
} }

View File

@ -414,7 +414,7 @@ typedef struct {
// little-endian "IBSP" // little-endian "IBSP"
#define BSP_VERSION 46 #define BSP_VERSION 46
#define BSP_VERSION_QL 47 // quakelive :sss
// there shouldn't be any problem with increasing these values at the // there shouldn't be any problem with increasing these values at the
// expense of more memory allocation in the utilities // expense of more memory allocation in the utilities