From 3fde5535c7cdb5989bfc00b8a784148b3bafe72e Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 16 Mar 2019 19:00:56 +0100 Subject: [PATCH] - replaced the "or" in the keybind menu with a darker comma so that this part is language neutral. --- src/c_bind.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/c_bind.cpp b/src/c_bind.cpp index 0427d5c45..14e2f5e05 100644 --- a/src/c_bind.cpp +++ b/src/c_bind.cpp @@ -46,6 +46,7 @@ #include "vm.h" #include "i_time.h" #include "menu/menu.h" +#include "v_text.h" const char *KeyNames[NUM_KEYS] = { @@ -297,7 +298,7 @@ void C_NameKeys (char *str, int first, int second) c++; strcpy (str, KeyName (first)); if (second) - strcat (str, " or "); + strcat (str, TEXTCOLOR_BLACK ", " TEXTCOLOR_NORMAL); } if (second)