fix level select

This commit is contained in:
Sonic Dreamcaster
2024-04-03 01:37:20 -03:00
committed by KiritoDv
parent dc3fe4def7
commit 63933461ef
+3 -2
View File
@@ -41,13 +41,14 @@ s32 Message_GetWidth(u16* msgPtr) {
}
s32 Message_GetCharCount(u16* msgPtr) {
s32 count = 0;
u16* msgChar = msgPtr;
#if MODS_LEVEL_SELECT == 1
if (gCurrentPlanet == 6) {
return 0;
}
#endif
s32 count = 0;
u16* msgChar = msgPtr;
while (*msgChar != NULL) {
count++;