Skip to content

Commit 3b4b621

Browse files
committed
Merge pull request #1 from hhiptmair/font-shape-issue
fixed font size bug, issue Hextris#162
2 parents 826200f + c02ae77 commit 3b4b621

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/view.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function easeOutCubic(t, b, c, d) {
66
function renderText(x, y, fontSize, color, text, font) {
77
ctx.save();
88
if (!font) {
9-
var font = '20px Exo';
9+
var font = 'px Exo';
1010
}
1111

1212
fontSize *= settings.scale;

0 commit comments

Comments
 (0)