diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-09-10 10:20:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 10:20:41 -0500 |
commit | cb053b3a15cf342ab520d234f6dbae27a6199d45 (patch) | |
tree | cb93014d00fbd49975b1607fe2c5698f61a38fa0 /src/trader.c | |
parent | 37edb063babb4f8d7b81ea95fb5911a0ab0878c7 (diff) | |
parent | 74cc2cf512657f478667f6b57ab595ab546962a1 (diff) |
Merge pull request #312 from DizzyEggg/decompile_frontier_2
Decompile Battle Factory
Diffstat (limited to 'src/trader.c')
-rw-r--r-- | src/trader.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/trader.c b/src/trader.c index c4d70ac9a..f081d7e95 100644 --- a/src/trader.c +++ b/src/trader.c @@ -77,11 +77,11 @@ void CreateAvailableDecorationsMenu(u8 taskId) for (i = 0; i < 4; i++) { if (trader->decorIds[i] > NUM_DECORATIONS) - PrintTextOnWindow(data[3], 1, gText_FiveMarks, 8, 16 * i + 1, 255, NULL); + AddTextPrinterParameterized(data[3], 1, gText_FiveMarks, 8, 16 * i + 1, 255, NULL); else - PrintTextOnWindow(data[3], 1, gDecorations[trader->decorIds[i]].name, 8, 16 * i + 1, 255, NULL); + AddTextPrinterParameterized(data[3], 1, gDecorations[trader->decorIds[i]].name, 8, 16 * i + 1, 255, NULL); } - PrintTextOnWindow(data[3], 1, gText_Exit, 8, 16 * i + 1, 255, NULL); + AddTextPrinterParameterized(data[3], 1, gText_Exit, 8, 16 * i + 1, 255, NULL); InitMenuInUpperLeftCornerPlaySoundWhenAPressed(data[3], 5, 0); schedule_bg_copy_tilemap_to_vram(0); } |