Change the default font from Vera size 12 to Noto Sans size 13.

Resolves issue #1075.
This commit is contained in:
Alex Szpakowski
2020-02-17 01:55:49 -04:00
parent 7c34345fa6
commit ac524e681a
8 changed files with 21295 additions and 5516 deletions
+5
View File
@@ -43,6 +43,7 @@ class Font : public Module
public:
Font();
virtual ~Font() {}
virtual Rasterizer *newRasterizer(love::filesystem::FileData *data) = 0;
@@ -64,6 +65,10 @@ public:
virtual ModuleType getModuleType() const { return M_FONT; }
virtual const char *getName() const = 0;
private:
StrongRef<Data> defaultFontData;
}; // Font
} // font