From 4f37e31677e38c1f2bc70ae1d26410b58ed7710b Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Thu, 22 Dec 2022 17:29:05 -0800 Subject: [PATCH] Client: Fix /n to \n replacement mapping in fun-strings, used by game_text and titles.txt type text overlays. --- src/client/titles.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/titles.qc b/src/client/titles.qc index 35d856e8..9f4609d4 100644 --- a/src/client/titles.qc +++ b/src/client/titles.qc @@ -53,7 +53,7 @@ Titles_ParseFunString(string temp) temp = strreplace("\\w", "^7", temp); temp = strreplace("\\d", "^8", temp); temp = strreplace("\\R", " ", temp); - temp = strreplace("/n", "\n", temp); + temp = strreplace("\\n", "\n", temp); return temp; }