diff options
author | Tustin2121 <tustin2121@gmail.com> | 2019-08-17 13:32:26 -0400 |
---|---|---|
committer | Tustin2121 <tustin2121@gmail.com> | 2019-08-17 13:32:26 -0400 |
commit | a708caac6d55aee1f0a6537707db3514d54b499e (patch) | |
tree | ca9f4c7000e8638dbe62a0cf2fcc842c662f09d8 /src | |
parent | 1069adae46a4e8eb6fdc953c60d0381c394a8e55 (diff) |
Suggested changes from review
Diffstat (limited to 'src')
-rw-r--r-- | src/credits.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/credits.c b/src/credits.c index 99c89dc8f..44fa2002c 100644 --- a/src/credits.c +++ b/src/credits.c @@ -143,7 +143,7 @@ struct Unk201C000 struct CreditsEntry { u8 var_0; - u8 isTitle; + bool8 isTitle; const u8 *text; }; @@ -1177,14 +1177,14 @@ static void sub_81755A4(void) 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 color[3]; color[0] = 0; - if (isTitle == 1) + if (isTitle == TRUE) { color[1] = 3; color[2] = 4; |