diff --git a/game/neo/gameinfo.txt b/game/neo/gameinfo.txt index 1e42269883..15413b7198 100644 --- a/game/neo/gameinfo.txt +++ b/game/neo/gameinfo.txt @@ -1,6 +1,6 @@ "GameInfo" { - Game "Neotokyo: Rebuild" + Game "NEOTOKYO;REBUILD" Title "" Title2 "" Type Multiplayer_Only diff --git a/src/game/client/neo/ui/neo_root.cpp b/src/game/client/neo/ui/neo_root.cpp index 602ed170c3..514f20415d 100644 --- a/src/game/client/neo/ui/neo_root.cpp +++ b/src/game/client/neo/ui/neo_root.cpp @@ -26,6 +26,7 @@ #include "neo_misc.h" #include "mp3player.h" #include "neo_theme.h" +#include "neo_player_shared.h" #include #include @@ -1763,7 +1764,7 @@ static constexpr const wchar_t *CREDITSPEOPLELABEL_NAMES[] = { }; static constexpr const wchar_t *CREDITSTITLELABEL_NAMES[] = { - L"NEOTOKYO;REBUILD Contributors", + NEO_GAME_NAME L" Contributors", L"STUDIO RADI-8", L"NEOTOKYO\u00B0 Contributors", L"Special Thanks" diff --git a/src/game/client/neo/ui/neo_root.h b/src/game/client/neo/ui/neo_root.h index 536d562638..4ceda086ac 100644 --- a/src/game/client/neo/ui/neo_root.h +++ b/src/game/client/neo/ui/neo_root.h @@ -17,7 +17,7 @@ bool IsInGame(); struct NeoNewGame { wchar_t wszMap[64] = L"ntre_oilstain_ctg"; - wchar_t wszHostname[64] = L"NEOTOKYO;REBUILD Listen Server"; + wchar_t wszHostname[64] = NEO_GAME_NAME L" Listen Server"; int iMaxPlayers = 24; int iBotQuota = 10; int iBotDifficulty = 2; diff --git a/src/game/shared/neo/neo_player_shared.h b/src/game/shared/neo/neo_player_shared.h index 2490863d04..d1e1300a52 100644 --- a/src/game/shared/neo/neo_player_shared.h +++ b/src/game/shared/neo/neo_player_shared.h @@ -406,6 +406,6 @@ static constexpr const SZWSZTexts SZWSZ_NEO_TEAM_STRS[TEAM__TOTAL] = { X_SZWSZ_INIT(TEAM_STR_NSF), // TEAM_NSF }; -#define NEO_GAME_NAME "Neotokyo; Rebuild" +#define NEO_GAME_NAME "NEOTOKYO;REBUILD" #endif // NEO_PLAYER_SHARED_H