mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- replaced the "or" in the keybind menu with a darker comma so that this part is language neutral.
This commit is contained in:
parent
9b76c47dbe
commit
3fde5535c7
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue