This is a fork of Zandronum used on servers hosted by The Sentinels Playground (TSPG).
Revisão | 17e5ed2390331208c4be9bae78786143093fa058 (tree) |
---|---|
Hora | 2018-03-17 19:26:52 |
Autor | Sean Baggaley <sean@csnx...> |
Commiter | Sean Baggaley |
Fix the space being prepended to the hostname even when there was no prefix
@@ -697,7 +697,7 @@ | ||
697 | 697 | return; |
698 | 698 | } |
699 | 699 | |
700 | - if (static_cast<const char *>(self)[0] != '\0') | |
700 | + if (static_cast<const char *>(tspg_branding_hostnameprefix)[0] != '\0') | |
701 | 701 | { |
702 | 702 | tspgPrefixLock = true; |
703 | 703 | const char *val = sv_hostname.GetGenericRep(CVAR_String).String; |
@@ -140,7 +140,7 @@ | ||
140 | 140 | // The maximum length of one save game description for the menus. |
141 | 141 | #define SAVESTRINGSIZE 24 |
142 | 142 | |
143 | -#define TSPG_VERSION 6 | |
143 | +#define TSPG_VERSION 7 | |
144 | 144 | |
145 | 145 | #ifdef TSPG_DEBUG |
146 | 146 | #define TSPG_VERSION_STR SAVEVERSTRINGIFY(TSPG_VERSION) "-dbg" |