From b645929035fc7f02c33f37d4e34ac7f9c89511e2 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 19 Feb 2023 13:01:20 +0100 Subject: [PATCH] - fixed some message mappings. --- source/core/gamecontrol.cpp | 4 ++-- wadsrc/static/filter/duke/language.txt | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index ef35b0e39..364f968a9 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -687,8 +687,8 @@ void SetDefaultStrings() } //Set a few quotes which are used for common handling of a few status messages - quoteMgr.InitializeQuote(23, "$MESSAGES: ON"); - quoteMgr.InitializeQuote(24, "$MESSAGES: OFF"); + quoteMgr.InitializeQuote(23, "$MSGON"); + quoteMgr.InitializeQuote(24, "$MSGOFF"); quoteMgr.InitializeQuote(83, "$FOLLOW MODE OFF"); quoteMgr.InitializeQuote(84, "$FOLLOW MODE ON"); quoteMgr.InitializeQuote(85, "$AUTORUNOFF"); diff --git a/wadsrc/static/filter/duke/language.txt b/wadsrc/static/filter/duke/language.txt index 76f0e9fd4..564b33be0 100644 --- a/wadsrc/static/filter/duke/language.txt +++ b/wadsrc/static/filter/duke/language.txt @@ -23,8 +23,10 @@ "#CrosshairOn" = "$$CROSSHAIR: ON"; "#CrosshairOff" = "$$CROSSHAIR: OFF"; "#Cheater" = "$$YOU'RE TOO GOOD TO BE CHEATING!"; -"#MessagesOn" = "$$MESSAGES: ON"; -"#MessagesOff" = "$$MESSAGES: OFF"; +"#MessagesOn" = "$$MSGON"; +"#MessagesOff" = "$$MSGOFF"; +"MESSAGES: ON" = "$$MSGON"; +"MESSAGES: OFF" = "$$MSGOFF"; "#TypeTheCheatCode" = "$$TYPE THE CHEAT CODE:"; "#DetailLow" = "$$DETAIL: LOW"; "#DetailHigh" = "$$DETAIL: HIGH";