Decreased GL,GLFW presence out of Window module

This commit is contained in:
MihailRis
2023-11-09 01:19:44 +03:00
parent 086f04af39
commit 1d9fc44482
6 changed files with 28 additions and 16 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ bool _load_font(Assets* assets, const std::string& filename, const std::string&
}
pages.push_back(texture);
}
Font* font = new Font(pages);
Font* font = new Font(pages, pages[0]->height / 16);
assets->store(font, name);
return true;
}