Fix DynamicAtlas.hpp inline error

This commit is contained in:
JaoSchmidt 2025-05-30 18:31:17 -03:00 committed by GitHub
parent f7eb7efdad
commit b2ace99448
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
namespace msdf_atlas {
static int ceilPOT(int x) {
static inline int ceilPOT(int x) {
if (x > 0) {
int y = 1;
while (y < x)