Hextris / hextris

Fast paced HTML5 puzzle game inspired by Tetris!
https://hextris.io
Other
2.21k stars 969 forks source link

fixed error with font-size in view.js:renderText() #212

Closed Rb64 closed 2 years ago

Rb64 commented 2 years ago

Fixed the bug that was mentioned in Issues #182 #162 #189 The problem was that fontSize *= settings.scale was concatenated with "20px Exo" which would result in an very large fontSize. This bug would only appear if the scaled fontSize happened to result in a full integer since concatenating a float with "20px Exo" would only extend the digits after the decimal point.

lengstrom commented 2 years ago

thank you!

Rb64 commented 2 years ago

no problem!