mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- changed the default key name string because '#' is used as a comment in the config files.
This commit is contained in:
parent
db944df467
commit
ae31e0ba72
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ static const char *KeyName (int key)
|
||||||
if (KeyNames[key])
|
if (KeyNames[key])
|
||||||
return KeyNames[key];
|
return KeyNames[key];
|
||||||
|
|
||||||
mysnprintf (name, countof(name), "#%d", key);
|
mysnprintf (name, countof(name), "Key_%d", key);
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue