fixed arg order bug

This commit is contained in:
thirdr 2024-04-11 14:02:26 +01:00
parent 4fc3095433
commit cdb7b4bf2c
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ def draw():
y += line_space
x = default_x
graphics.text(letter.upper(), x, y, 640, scale, spacing)
graphics.text(letter.upper(), x, y, 640, scale=scale, spacing=spacing)
x += letter_space
graphics.update()