Skip to content

Commit

Permalink
V21.2 fixing iwd checksums
Browse files Browse the repository at this point in the history
  • Loading branch information
IceNinjaman committed May 1, 2022
1 parent 54db3b9 commit 0beb470
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/filesystem.c
Original file line number Diff line number Diff line change
Expand Up @@ -2601,10 +2601,11 @@ static pack_t *FS_LoadZipFile( char *zipfile, const char *basename ) {
{
fwrite(fs_headerLongs, 4, fs_numHeaderLongs, df);
fclose(df);
}
}*/

pack->checksum = Com_BlockChecksumKey32( fs_headerLongs, 4 * fs_numHeaderLongs, LittleLong( 0 ) );
Com_Printf(CON_CHANNEL_DONT_FILTER, "%s: %d\n", zipfile, pack->checksum);
*/


if(fs_checksumFeed)
pack->pure_checksum = Com_BlockChecksumKey32( fs_headerLongs, 4 * fs_numHeaderLongs, LittleLong( fs_checksumFeed ) );
Expand Down
2 changes: 1 addition & 1 deletion src/version/version.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "version.h"

#define SYS_COMMONVERSION 21.1
#define SYS_COMMONVERSION 21.2
#define _STRINGIFY(s) #s
#define STRINGIFY(s) _STRINGIFY(s)

Expand Down

0 comments on commit 0beb470

Please sign in to comment.