Compare commits

...

3 Commits

Author SHA1 Message Date
VDm
f1c1e225ba
Merge 6b2e0c089c into f1d1dad08b 2025-03-17 20:52:56 +00:00
VDm
6b2e0c089c fix(ui): fix StringToJustify to support BOTTOM 2025-03-18 00:52:49 +04:00
superp00t
f1d1dad08b chore(build): upgrade dependencies 2024-12-09 13:14:00 -05:00
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 438c900ff50b2dff0d8f7d9ff711051a3c83cbac
Subproject commit 422bc11d30c6761343877677539dc4704ed8e05d

@ -1 +1 @@
Subproject commit 98bc6a59bcf1016b9f85239e6918e595ca0331c0
Subproject commit 4cd18ccfd0b507fb686e1260b5d4c00a17c9d785

View File

@ -150,7 +150,7 @@ int32_t StringToJustify(const char* string, uint32_t& justify) {
{ 0x20, "BOTTOM" }
};
for (int32_t i = 0; i < 5; i++) {
for (int32_t i = 0; i < 6; i++) {
if (!SStrCmpI(justifyMap[i].string, string, 0x7FFFFFFFu)) {
justify = justifyMap[i].value;
return 1;