Skip to content

Commit

Permalink
Resolved attitude log disabled flag enum position issue (#4268)
Browse files Browse the repository at this point in the history
* resolved attitude log disabled flag enum position issue

* The code readable improvement

Co-authored-by: Mark Haslinghuis <mark@numloq.nl>

---------

Co-authored-by: Mark Haslinghuis <mark@numloq.nl>
  • Loading branch information
demvlad and haslinghuis authored Dec 6, 2024
1 parent e0c62d6 commit eef91fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ function update() {
'debug[5]': 'TPA Argument (Wing)',
};

DEBUG.enableFields.splice(DEBUG.enableFields.indexOf("Gyro"), 0, "Attitude");
DEBUG.enableFields.splice(DEBUG.enableFields.indexOf("Gyro") + 1, 0, "Attitude");
}
}

Expand Down

0 comments on commit eef91fb

Please sign in to comment.