mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
accept pak0.pk3 in demoq3/ as well
This commit is contained in:
parent
f52330bcfe
commit
be6ca402e8
1 changed files with 2 additions and 1 deletions
|
@ -2870,7 +2870,8 @@ static void FS_CheckPak0( void )
|
|||
for( path = fs_searchpaths; path; path = path->next ) {
|
||||
if( path->pack &&
|
||||
!Q_stricmpn( path->pack->pakBasename, "pak0", MAX_OSPATH ) &&
|
||||
!Q_stricmpn( path->pack->pakGamename, "baseq3", MAX_OSPATH ) ) {
|
||||
(!Q_stricmpn( path->pack->pakGamename, "baseq3", MAX_OSPATH ) ||
|
||||
!Q_stricmpn( path->pack->pakGamename, "demoq3", MAX_OSPATH ))) {
|
||||
foundPak0 = qtrue;
|
||||
|
||||
if( path->pack->checksum == DEMO_PAK0_CHECKSUM ) {
|
||||
|
|
Loading…
Reference in a new issue