diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-09-01 14:25:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 14:25:21 -0400 |
commit | 7c8bc0fbe3606f9dac1f84a9f3a25879cb984782 (patch) | |
tree | ba6d8050355cbe28e70f525b62256c0f776ea1d8 /src/contest.c | |
parent | ff9204a5ff0789ee696ea1fb9273577df01b833c (diff) | |
parent | 5504ceada36bfdf840552e9238c81f11ed7c3581 (diff) |
Merge pull request #1149 from PokeCodec/datatypes
gflib documenting
Diffstat (limited to 'src/contest.c')
-rw-r--r-- | src/contest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/contest.c b/src/contest.c index fbd42a007..a84d72aa9 100644 --- a/src/contest.c +++ b/src/contest.c @@ -5411,7 +5411,7 @@ static void Contest_PrintTextToBg0WindowStd(u32 windowId, const u8 *b) printerTemplate.currentY = 1; printerTemplate.letterSpacing = 0; printerTemplate.lineSpacing = 0; - printerTemplate.unk = 0; + printerTemplate.style = 0; printerTemplate.fgColor = 15; printerTemplate.bgColor = 0; printerTemplate.shadowColor = 8; @@ -5434,7 +5434,7 @@ void Contest_PrintTextToBg0WindowAt(u32 windowId, u8 *currChar, s32 x, s32 y, s3 printerTemplate.currentY = y; printerTemplate.letterSpacing = 0; printerTemplate.lineSpacing = 0; - printerTemplate.unk = 0; + printerTemplate.style = 0; printerTemplate.fgColor = 15; printerTemplate.bgColor = 0; printerTemplate.shadowColor = 8; @@ -5458,7 +5458,7 @@ static void Contest_StartTextPrinter(const u8 *currChar, bool32 b) printerTemplate.currentY = 1; printerTemplate.letterSpacing = 0; printerTemplate.lineSpacing = 0; - printerTemplate.unk = 0; + printerTemplate.style = 0; printerTemplate.fgColor = 1; printerTemplate.bgColor = 0; printerTemplate.shadowColor = 8; |