Skip to content

Commit

Permalink
Merge pull request #1 from hhiptmair/font-shape-issue
Browse files Browse the repository at this point in the history
fixed font size bug, issue Hextris#162
  • Loading branch information
hhiptmair committed May 2, 2016
2 parents 826200f + c02ae77 commit 3b4b621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function easeOutCubic(t, b, c, d) {
function renderText(x, y, fontSize, color, text, font) {
ctx.save();
if (!font) {
var font = '20px Exo';
var font = 'px Exo';
}

fontSize *= settings.scale;
Expand Down

0 comments on commit 3b4b621

Please sign in to comment.