Minor Bug in lib/keymap.lua

Discuss, ask for help, share ideas, give suggestions, read tutorials, and tell us about bugs you have found with MicroMacro in here.

Do not post RoM-Bot stuff here. There is a subforum for that.
Forum rules
This is a sub-forum for things specific to MicroMacro.

This is not the place to ask questions about the RoM bot, which uses MicroMacro. There is a difference.
Post Reply
Message
Author
death_goes
Posts: 1
Joined: Mon Feb 11, 2008 3:20 am

Minor Bug in lib/keymap.lua

#1 Post 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!
User avatar
Administrator
Site Admin
Posts: 5344
Joined: Sat Jan 05, 2008 4:21 pm

Re: Minor Bug in lib/keymap.lua

#2 Post 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.
Post Reply