MengelCode / finalfate

**The Final Fate** A space game in HTML5 and JavaScript.
https://manuel-engel.de/finalfate/finalfate
Other
9 stars 5 forks source link

Font wrongly set, needs checkup. #155

Closed MengelCode closed 1 year ago

MengelCode commented 1 year ago

In the canvas drawing code, the font for a non-serif font is sometimes wrongly set, as I noticed in another project. This:

context.font = "23px Nonserif";

is supposed to look like this:

context.font = "23px sans-serif";

These mistakes should be corrected here, as well.

MengelCode commented 1 year ago

I thought of something...maybe the solution is to leave the font as is in the result. Maybe it will look bad for others. I should include.