Skip to content

Commit

Permalink
This should be 19.0 release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Beasty committed Dec 12, 2020
1 parent 1b50125 commit 420dc2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions plugins/warn/warn.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ void __cdecl OnPlayerDC(client_t *client, const char* reason)
void OpenWarnFile(void)
{
char filename[512]; // [sp+10h] [bp-208h]@1
char stringbuf[512];
char stringbuf[500];
Plugin_Cvar_VariableStringBuffer("fs_homepath", stringbuf, sizeof(stringbuf));
snprintf(filename, 0x200u, "%s/warn.dat", stringbuf);
snprintf(filename, sizeof(filename), "%s/warn.dat", stringbuf);
w_filehandle = fopen(filename, "a+");
Plugin_Printf("Warn_System: File has been opened!\n");
}
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 18.2
#define SYS_COMMONVERSION 19.0
#define _STRINGIFY(s) #s
#define STRINGIFY(s) _STRINGIFY(s)

Expand Down
1 change: 1 addition & 0 deletions src/xac_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ void SV_GetSS_f();

void SV_TryLoadXAC()
{
return;
// char errormsg[1024];
void* hmodule;
static imports_t exports;
Expand Down

0 comments on commit 420dc2b

Please sign in to comment.