- changed the default key name string because '#' is used as a comment in the config files.

This commit is contained in:
Christoph Oelckers 2016-05-22 12:20:46 +02:00
parent db944df467
commit ae31e0ba72
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }