- replaced the "or" in the keybind menu with a darker comma so that this part is language neutral.

This commit is contained in:
Christoph Oelckers 2019-03-16 19:00:56 +01:00
parent 9b76c47dbe
commit 3fde5535c7
1 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@
#include "vm.h" #include "vm.h"
#include "i_time.h" #include "i_time.h"
#include "menu/menu.h" #include "menu/menu.h"
#include "v_text.h"
const char *KeyNames[NUM_KEYS] = const char *KeyNames[NUM_KEYS] =
{ {
@ -297,7 +298,7 @@ void C_NameKeys (char *str, int first, int second)
c++; c++;
strcpy (str, KeyName (first)); strcpy (str, KeyName (first));
if (second) if (second)
strcat (str, " or "); strcat (str, TEXTCOLOR_BLACK ", " TEXTCOLOR_NORMAL);
} }
if (second) if (second)