diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-03 18:29:18 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-11-03 19:54:20 -0400 |
commit | 50d3003a0d66b30fa1bf50b33e1a7de6263dca5d (patch) | |
tree | 977ab84e4c13e1e6bc21c8031737995e1e673348 /src/decoration.c | |
parent | 085f8adec62be6a1ecf7b4389148867408b30bed (diff) |
Text clean-up, TEXT_SPEED_FF to TEXT_SKIP_DRAW
Diffstat (limited to 'src/decoration.c')
-rw-r--r-- | src/decoration.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoration.c b/src/decoration.c index 3f93d9ccc..bb2dea7f9 100644 --- a/src/decoration.c +++ b/src/decoration.c @@ -723,9 +723,9 @@ static void PrintDecorationCategoryMenuItems(u8 taskId) { // Only DOLL and CUSHION decorations are enabled when decorating the player's room. if (shouldDisable == TRUE && i != DECORCAT_DOLL && i != DECORCAT_CUSHION) - PrintDecorationCategoryMenuItem(windowId, i, 8, i * 16, TRUE, TEXT_SPEED_FF); + PrintDecorationCategoryMenuItem(windowId, i, 8, i * 16, TRUE, TEXT_SKIP_DRAW); else - PrintDecorationCategoryMenuItem(windowId, i, 8, i * 16, FALSE, TEXT_SPEED_FF); + PrintDecorationCategoryMenuItem(windowId, i, 8, i * 16, FALSE, TEXT_SKIP_DRAW); } AddTextPrinterParameterized(windowId, FONT_NORMAL, gTasks[taskId].tDecorationMenuCommand == DECOR_MENU_TRADE ? gText_Exit : gText_Cancel, 8, i * 16 + 1, 0, NULL); |