mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
fs_fakeChkSum is indeed obsolete and unnecessary. Removing it altogether now.
This commit is contained in:
parent
691da05b74
commit
5a882a72e4
1 changed files with 0 additions and 16 deletions
|
@ -249,7 +249,6 @@ static int fs_loadCount; // total files read
|
|||
static int fs_loadStack; // total files in memory
|
||||
static int fs_packFiles; // total number of files in packs
|
||||
|
||||
static int fs_fakeChkSum;
|
||||
static int fs_checksumFeed;
|
||||
|
||||
typedef union qfile_gus {
|
||||
|
@ -1181,16 +1180,6 @@ int FS_FOpenFileRead( const char *filename, fileHandle_t *file, qboolean uniqueF
|
|||
continue;
|
||||
}
|
||||
|
||||
if ( Q_stricmp( filename + l - 4, ".cfg" ) // for config files
|
||||
&& Q_stricmp( filename + l - 5, ".menu" ) // menu files
|
||||
&& Q_stricmp( filename + l - 5, ".game" ) // menu files
|
||||
&& Q_stricmp( filename + l - strlen(demoExt), demoExt ) // menu files
|
||||
&& Q_stricmp( filename + l - 4, ".dat" ) ) { // for journal files
|
||||
|
||||
if(!(fs_fakeChkSum = random()))
|
||||
fs_fakeChkSum = 0xdeadbeef;
|
||||
}
|
||||
|
||||
Q_strncpyz( fsh[*file].name, filename, sizeof( fsh[*file].name ) );
|
||||
fsh[*file].zipFile = qfalse;
|
||||
if ( fs_debug->integer ) {
|
||||
|
@ -3123,10 +3112,6 @@ const char *FS_ReferencedPakPureChecksums( void ) {
|
|||
numPaks++;
|
||||
}
|
||||
}
|
||||
if (fs_fakeChkSum != 0) {
|
||||
// only added if a non-pure file is referenced
|
||||
Q_strcat( info, sizeof( info ), va("%i ", fs_fakeChkSum ) );
|
||||
}
|
||||
}
|
||||
// last checksum is the encoded number of referenced pk3s
|
||||
checksum ^= numPaks;
|
||||
|
@ -3348,7 +3333,6 @@ void FS_Restart( int checksumFeed ) {
|
|||
|
||||
// set the checksum feed
|
||||
fs_checksumFeed = checksumFeed;
|
||||
fs_fakeChkSum = 0;
|
||||
|
||||
// clear pak references
|
||||
FS_ClearPakReferences(0);
|
||||
|
|
Loading…
Reference in a new issue