From ae31e0ba72c9b978cb94e8090a8cb7572116ec17 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 22 May 2016 12:20:46 +0200 Subject: [PATCH] - changed the default key name string because '#' is used as a comment in the config files. --- src/c_bind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c_bind.cpp b/src/c_bind.cpp index a298dc2968..5c1b183239 100644 --- a/src/c_bind.cpp +++ b/src/c_bind.cpp @@ -228,7 +228,7 @@ static const char *KeyName (int key) if (KeyNames[key]) return KeyNames[key]; - mysnprintf (name, countof(name), "#%d", key); + mysnprintf (name, countof(name), "Key_%d", key); return name; }