Fix bug in offset

This commit is contained in:
RobinLinus 2020-12-20 22:13:22 +01:00
parent 94b2566685
commit 14ead247ed
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ Events.on('load', () => {
c.width = w;
c.height = h;
let offset = h > 380 ? 100 : 65;
offset = h > 800 ? 116 : h;
offset = h > 800 ? 116 : offset;
x0 = w / 2;
y0 = h - offset;
dw = Math.max(w, h, 1000) / 13;