Remove "FAKE" modifier for primary analog keys

Since KeyMap only handles descrete keys it is
inaccurate to call them analog. Let no
developer should get confused since the cardinal
directions indicate the descrete natures.
This commit is contained in:
danieru
2013-04-20 13:11:51 -06:00
parent 6121819856
commit f63ea38af8
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -165,10 +165,10 @@ const KeyMap_IntStrPair key_names[] = {
{KEY_ARROW_RIGHT, "Right"},
{KEY_ARROW_DOWN, "Down"},
{KEY_ANALOG_FAKE_LEFT, "Analog Left"},
{KEY_ANALOG_FAKE_UP, "Analog Up"},
{KEY_ANALOG_FAKE_RIGHT, "Analog Right"},
{KEY_ANALOG_FAKE_DOWN, "Analog Down"},
{KEY_ANALOG_LEFT, "Analog Left"},
{KEY_ANALOG_UP, "Analog Up"},
{KEY_ANALOG_RIGHT, "Analog Right"},
{KEY_ANALOG_DOWN, "Analog Down"},
{KEY_ANALOG_ALT_LEFT, "Alt analog Left"},
{KEY_ANALOG_ALT_UP, "Alt analog Up"},