Page 1 of 1

Minor Bug in lib/keymap.lua

Posted: Mon Feb 11, 2008 3:46 am
by death_goes
Hi,

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

Code: Select all

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:

Code: Select all

key.VK_MINUS = key.VK_DASH;
Anyway, micromacro is awesome, saved me loads of work!

Re: Minor Bug in lib/keymap.lua

Posted: Mon Feb 11, 2008 5:27 am
by Administrator
Good call. You are correct; I did mean key.VK_MINUS = key.VK_DASH. Thanks. This is no big problem though, so I won't bother uploading an update right away.