diff --git a/user_scripts/IodineGBAJoyPadGlueCode.js b/user_scripts/IodineGBAJoyPadGlueCode.js index 1ee7a32a..062a3b86 100644 --- a/user_scripts/IodineGBAJoyPadGlueCode.js +++ b/user_scripts/IodineGBAJoyPadGlueCode.js @@ -11,9 +11,9 @@ var keyZones = [ //Use this to control the key mapping: //A: - [88, 74], + [88], //B: - [90, 81, 89], + [90], //Select: [16], //Start: @@ -27,9 +27,9 @@ var keyZones = [ //Down: [40], //R: - [50], + [83], //L: - [49] + [65] ]; function keyDown(e) { var keyCode = e.keyCode | 0; @@ -77,4 +77,4 @@ function keyUpPreprocess(e) { //Control keys / other keyUp(keyCode); } -} \ No newline at end of file +}