fix(simple): add missing return statement in non-void function

This commit is contained in:
Tristan Cormier 2025-12-07 20:13:52 -05:00
parent e5fe93c1f3
commit 2437fde582

View File

@ -246,6 +246,8 @@ int32_t CSimpleFontString_SetJustifyH(lua_State* L) {
string->SetJustifyH(justifyH);
string->m_fontableFlags &= ~FLAG_STYLE_UPDATE;
return 0;
}
int32_t CSimpleFontString_GetJustifyV(lua_State* L) {