fix(ui): add missing return statement (#142)

This commit is contained in:
Tristan 'Natrist' Cormier 2025-12-07 20:39:20 -05:00 committed by GitHub
parent e5fe93c1f3
commit 25c21b5fbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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) {