Skip to content

Commit

Permalink
increased version for pullrequests
Browse files Browse the repository at this point in the history
  • Loading branch information
IceNinjaman committed Apr 30, 2022
1 parent 176a5f7 commit 54db3b9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions src/filesystem.c
Original file line number Diff line number Diff line change
Expand Up @@ -2593,7 +2593,19 @@ static pack_t *FS_LoadZipFile( char *zipfile, const char *basename ) {
unzGoToNextFile( uf );
}

/*//Code for dumping iwd pure sums
char headername[1024];
sprintf(headername, "%s.sum", zipfile);
FILE* df = fopen(headername, "wb");
if(df)
{
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 ) );
else
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.0
#define SYS_COMMONVERSION 21.1
#define _STRINGIFY(s) #s
#define STRINGIFY(s) _STRINGIFY(s)

Expand Down

0 comments on commit 54db3b9

Please sign in to comment.