diff options
Diffstat (limited to 'src/sst.c')
-rw-r--r-- | src/sst.c | 8 |
1 files changed, 4 insertions, 4 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 != 12 +#if VERSION_MAJOR != 0 || VERSION_MINOR != 13 #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_12_beta, "", 0, CON_HIDDEN | CON_DEMO) +DEF_CVAR(__sst_0_13_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,8 +270,8 @@ static bool already_loaded = false, skip_unload = false; // auto-update message. see below in do_featureinit() static const char *updatenotes = "\ -* Fixed unsupported console variables not being hidden\n\ -* Fixed some other smaller regressions in feature initialisation logic\n\ +* Fixed yet another feature initialisation bug, hopefully the last for now\n\ +* Improved messages from hooked plugin_load/plugin_unload commands\n\ "; enum { // used in generated code, must line up with featmsgs arrays below |