mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-15 07:00:58 +00:00
Allow more than 1 lightgrid file version
This commit is contained in:
parent
5b0a3a8ac8
commit
b67612c67c
1 changed files with 1 additions and 1 deletions
|
@ -605,7 +605,7 @@ bool idRenderWorldLocal::LoadLightGridFile( const char* name )
|
|||
lightGridVersion = atoi( token );
|
||||
}
|
||||
|
||||
if( lightGridVersion != LGRID_VERSION )
|
||||
if( lightGridVersion != LGRID_VERSION && lightGridVersion != 4 )
|
||||
{
|
||||
common->Warning( "%s has version %i instead of %i", fileName.c_str(), lightGridVersion, LGRID_VERSION );
|
||||
delete src;
|
||||
|
|
Loading…
Reference in a new issue