Suggested changes from review

This commit is contained in:
Tustin2121 2019-08-17 13:32:26 -04:00
parent 1069adae46
commit a708caac6d

View File

@ -143,7 +143,7 @@ struct Unk201C000
struct CreditsEntry struct CreditsEntry
{ {
u8 var_0; u8 var_0;
u8 isTitle; bool8 isTitle;
const u8 *text; const u8 *text;
}; };
@ -1177,14 +1177,14 @@ static void sub_81755A4(void)
Free(ptr); Free(ptr);
} }
static void PrintCreditsText(const u8 *string, u8 y, u8 isTitle) static void PrintCreditsText(const u8 *string, u8 y, bool8 isTitle)
{ {
u8 x; u8 x;
u8 color[3]; u8 color[3];
color[0] = 0; color[0] = 0;
if (isTitle == 1) if (isTitle == TRUE)
{ {
color[1] = 3; color[1] = 3;
color[2] = 4; color[2] = 4;