mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-02-07 08:21:48 +00:00
* Only check the checksum on baseq3 pak0.pk3
This commit is contained in:
parent
c3f7915a8b
commit
4ab96373e6
1 changed files with 2 additions and 1 deletions
|
@ -2869,7 +2869,8 @@ static void FS_CheckPak0( void )
|
||||||
|
|
||||||
for( path = fs_searchpaths; path; path = path->next ) {
|
for( path = fs_searchpaths; path; path = path->next ) {
|
||||||
if( path->pack &&
|
if( path->pack &&
|
||||||
!Q_stricmpn( path->pack->pakBasename, "pak0", MAX_OSPATH ) ) {
|
!Q_stricmpn( path->pack->pakBasename, "pak0", MAX_OSPATH ) &&
|
||||||
|
!Q_stricmpn( path->pack->pakGamename, "baseq3", MAX_OSPATH ) ) {
|
||||||
foundPak0 = qtrue;
|
foundPak0 = qtrue;
|
||||||
|
|
||||||
if( path->pack->checksum == DEMO_PAK0_CHECKSUM ) {
|
if( path->pack->checksum == DEMO_PAK0_CHECKSUM ) {
|
||||||
|
|
Loading…
Reference in a new issue