Pokergame commit

This commit is contained in:
2023-02-17 22:55:48 -08:00
parent 72508ace53
commit 73535765ab
4 changed files with 45 additions and 46 deletions

View File

@ -37,7 +37,7 @@ float_t TrueTypeFont::getScale(float_t scale) {
float_t TrueTypeFont::getSpaceSize(float_t fontSize) {
assertTrue(fontSize > 0);
return this->getScale(fontSize) * 18;
return this->getScale(fontSize) * 48;
}
float_t TrueTypeFont::getInitialLineHeight(float_t fontSize) {
@ -47,7 +47,7 @@ float_t TrueTypeFont::getInitialLineHeight(float_t fontSize) {
float_t TrueTypeFont::getLineHeight(float_t fontSize) {
assertTrue(fontSize > 0);
return 96.0f * this->getScale(fontSize);
return 128.0f * this->getScale(fontSize);
}
void TrueTypeFont::buffer(