1
0
Fork 0

[gpsnav] Correct clearing rect

master
storm64 2022-10-04 12:58:00 +02:00 committed by GitHub
parent fd3d47bd7b
commit 9e0147d8bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ var loc = {
function drawCompass(course) {
if (!candraw) return;
g.reset().clearRect(0, 24, 175, 70);
g.reset().clearRect(0, 24, 175, 71);
g.setFont("Vector", 18);
var start = course - 90;
if (start < 0) start += 360;