summaryrefslogtreecommitdiff
path: root/src/sst.c
diff options
context:
space:
mode:
authorGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-06-01 22:16:59 +0100
committerGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-06-01 22:22:35 +0100
commitf72f653912ccc7b49f86e71c3198d1fd6ec1df72 (patch)
tree443ade721ea8ce6f0bf448b837c0d0865469e146 /src/sst.c
parent4f8ae67010735098589a883c62f03f2b3ea63ea1 (diff)
downloadsst-0.12-BETA.tar.gz
sst-0.12-BETA.zip
Set up for a 0.12 releaseHEADv0.12-BETAmaster
Diffstat (limited to 'src/sst.c')
-rw-r--r--src/sst.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sst.c b/src/sst.c
index 7628007..918c3c4 100644
--- a/src/sst.c
+++ b/src/sst.c
@@ -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 != 11
+#if VERSION_MAJOR != 0 || VERSION_MINOR != 12
#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_11_beta, "", 0, CON_HIDDEN | CON_DEMO)
+DEF_CVAR(__sst_0_12_beta, "", 0, CON_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,8 @@ static bool already_loaded = false, skip_unload = false;
// auto-update message. see below in do_featureinit()
static const char *updatenotes = "\
-* Fixed buggy addon fix behaviour in some L4D2 versions\n\
+* Fixed unsupported console variables not being hidden\n\
+* Fixed some other smaller regressions in feature initialisation logic\n\
";
enum { // used in generated code, must line up with featmsgs arrays below