ippa / jaws

Jaws - HTML5 canvas javascript 2D Game Framework
https://jawsjs.ippa.se
GNU Lesser General Public License v3.0
363 stars 75 forks source link

numpad0 keycode missing #66

Closed plko closed 11 years ago

plko commented 11 years ago

In input.js line 75:var numpadkeys = ["numpad1","numpad2","numpad3","numpad4","numpad5","numpad6","numpad7","numpad8","numpad9"]

This make numpad1(keycode:97) actually trigger by the numpad0(keycode:96), I think here should add "numpad0" at first.

Because in input.js line 81:for(var i = 0; numpadkeys[i]; i++) { k[96+i] = numpadkeys[i] } This is start from keycode 96, where is numpad0's keycode.

Thanks!

ippa commented 11 years ago

could you wrap up a patch? I'll merge it

ippa commented 11 years ago

this has been merged.