diff options
| author | 2025-11-25 20:00:33 +0000 | |
|---|---|---|
| committer | 2025-11-25 20:00:33 +0000 | |
| commit | 8bed97cda76655c49fb80b604203ec572b2bf59e (patch) | |
| tree | 9677f4514184a15af01a13ddf85a48f868b8f8c3 | |
| parent | 447aa3e9d2983a8fd74e7f8371bf88ece291bd69 (diff) | |
| download | sst-8bed97cda76655c49fb80b604203ec572b2bf59e.tar.gz sst-8bed97cda76655c49fb80b604203ec572b2bf59e.zip | |
Prep 0.17, already!
| -rw-r--r-- | src/sst.c | 5 | ||||
| -rw-r--r-- | src/version.h | 4 |
2 files changed, 4 insertions, 5 deletions
@@ -240,11 +240,11 @@ DEF_CCMD_HERE(sst_printversion, "Display plugin version information", 0) { // interested parties identify the version of SST used by just writing a dummy // cvar to the top of the demo. this will be removed later, once there's a less // stupid way of achieving the same goal. -#if VERSION_MAJOR != 0 || VERSION_MINOR != 16 +#if VERSION_MAJOR != 0 || VERSION_MINOR != 17 #error Need to change this manually, since gluegen requires it to be spelled \ out in DEF_CVAR - better yet, can we get rid of this yet? #endif -DEF_CVAR(__sst_0_16_beta, "", 0, CON_INIT_HIDDEN | CON_DEMO) +DEF_CVAR(__sst_0_17_beta, "", 0, CON_INIT_HIDDEN | CON_DEMO) // most plugin callbacks are unused - define dummy functions for each signature static void VCALLCONV nop_v_v(void *this) {} @@ -270,7 +270,6 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* Fixed input HUD crash in L4D games introduced by previous release\n\ "; enum { // used in generated code, must line up with featmsgs arrays below diff --git a/src/version.h b/src/version.h index 2680f79..fb1b48b 100644 --- a/src/version.h +++ b/src/version.h @@ -1,5 +1,5 @@ #define NAME "SST" #define LONGNAME "Source Speedrun Tools Beta" #define VERSION_MAJOR 0 -#define VERSION_MINOR 16 -#define VERSION "0.16" +#define VERSION_MINOR 17 +#define VERSION "0.17" |
