PShell_InstructionalText and PShell_SmallFont

This commit is contained in:
krystalgamer 2024-06-02 17:40:52 +02:00
parent f2c438ef8c
commit 8c376b070d
2 changed files with 18 additions and 0 deletions

View File

@ -152,3 +152,19 @@ void PShell_DefaultText(void)
Mess_SetRGB(0x80, 0x80, 0x80, 0);
Mess_SetRGBBottom(0x45, 60, 107);
}
// @Ok
void PShell_SmallFont(void)
{
Mess_SetScale(256);
Mess_SetCurrentFont("sp_fnt02.fnt");
}
// @Ok
void PShell_InstructionalText(void)
{
PShell_SmallFont();
Mess_SetTextJustify(0);
Mess_SetRGB(0x45u, 0x3Cu, 0x6Bu, 0);
Mess_SetRGBBottom(0x28u, 35, 62);
}

View File

@ -32,5 +32,7 @@ EXPORT int PShell_GetNumCostumePSXs(void);
EXPORT void PShell_BigCheat(void);
EXPORT void PShell_NormalFont(void);
EXPORT void PShell_DefaultText(void);
EXPORT void PShell_SmallFont(void);
EXPORT void PShell_InstructionalText(void);
#endif