Skip to content
Snippets Groups Projects
Commit 2fb48fe2 authored by fortissBot's avatar fortissBot
Browse files

negate values for js1_ud and js2_ud in read methods

refs 7795
parent b8e63f4b
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,7 @@ GEN_TYPE_double gp_btnLX_read() { ...@@ -206,7 +206,7 @@ GEN_TYPE_double gp_btnLX_read() {
} }
GEN_TYPE_double gp_btnLY_read() { GEN_TYPE_double gp_btnLY_read() {
return ie.btns.js1_ud; return -ie.btns.js1_ud;
} }
GEN_TYPE_double gp_btnRX_read() { GEN_TYPE_double gp_btnRX_read() {
...@@ -214,7 +214,7 @@ GEN_TYPE_double gp_btnRX_read() { ...@@ -214,7 +214,7 @@ GEN_TYPE_double gp_btnRX_read() {
} }
GEN_TYPE_double gp_btnRY_read() { GEN_TYPE_double gp_btnRY_read() {
return ie.btns.js2_ud; return -ie.btns.js2_ud;
} }
// noval // noval
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment