Merge pull request #2332 from haslinghuis/fix_osd_preview

Fix drawStickOverlayPreview in OSD
10.8-maintenance
Michael Keller 2020-12-13 10:11:57 +01:00 committed by GitHub
commit 8b006c48db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -81,12 +81,6 @@ SYM.loadSymbols = function() {
}
};
const STICK_OVERLAY_SPRITE = [
SYM.STICK_OVERLAY_SPRITE_HIGH,
SYM.STICK_OVERLAY_SPRITE_MID,
SYM.STICK_OVERLAY_SPRITE_LOW,
];
FONT.initData = function() {
if (FONT.data) {
return;
@ -371,6 +365,12 @@ OSD.drawStickOverlayPreview = function() {
return Math.floor(Math.random() * Math.floor(count));
}
const STICK_OVERLAY_SPRITE = [
SYM.STICK_OVERLAY_SPRITE_HIGH,
SYM.STICK_OVERLAY_SPRITE_MID,
SYM.STICK_OVERLAY_SPRITE_LOW,
];
const OVERLAY_WIDTH = 7;
const OVERLAY_HEIGHT = 5;