Progress on poker logic

This commit is contained in:
2022-11-20 22:18:50 -08:00
parent 3c405c4bd3
commit 122b800392
31 changed files with 1779 additions and 222 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 mathRoundFloat(this->fontSize * 0.3f);
return mathRound<float_t>(this->fontSize * 0.3f);
}
float_t TrueTypeFont::getInitialLineHeight(float_t fontSize) {