diff --git a/pshell.cpp b/pshell.cpp index 7951c37..3e04252 100644 --- a/pshell.cpp +++ b/pshell.cpp @@ -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); +} diff --git a/pshell.h b/pshell.h index 116d17c..b8f9c75 100644 --- a/pshell.h +++ b/pshell.h @@ -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