Search found 1 match

by death_goes
Mon Feb 11, 2008 3:46 am
Forum: MicroMacro general & support
Topic: Minor Bug in lib/keymap.lua
Replies: 1
Views: 1929

Minor Bug in lib/keymap.lua

Hi,

I just downloaded the latest version and noticed the following bug in keymap.lua:

key.VK_DASH = 189;
key.VK_HYPHEN = key.VK_DASH;
key.VK_MINUS = key.VK_MINUS; // <-- key.VK_MINUS has no Value.

I gues it should look like:
key.VK_MINUS = key.VK_DASH;

Anyway, micromacro is awesome, saved me ...