diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-03 13:17:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-03 13:17:29 -0400 |
commit | e14210ce1f9be3ae894490a4e3050832aecbdde7 (patch) | |
tree | 6f91b9a6be1ec65ee31fef1883882a0a458236ac /src/save_failed_screen.c | |
parent | 0ba22ca1124bf5cf37ba2934fda4ec1a9cca02a6 (diff) | |
parent | 929aade0fd0e5ea0fba4e18650bda02e6a943ba5 (diff) |
Merge pull request #1536 from GriffinRichards/clean-braille
Add font id constants, better braille support
Diffstat (limited to 'src/save_failed_screen.c')
-rw-r--r-- | src/save_failed_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/save_failed_screen.c b/src/save_failed_screen.c index da75a4804..4f0373270 100644 --- a/src/save_failed_screen.c +++ b/src/save_failed_screen.c @@ -153,7 +153,7 @@ static void SaveFailedScreenTextPrint(const u8 *text, u8 x, u8 y) color[0] = TEXT_COLOR_TRANSPARENT; color[1] = TEXT_DYNAMIC_COLOR_6; color[2] = TEXT_COLOR_LIGHT_GRAY; - AddTextPrinterParameterized4(sWindowIds[TEXT_WIN_ID], 1, x * 8, y * 8 + 1, 0, 0, color, 0, text); + AddTextPrinterParameterized4(sWindowIds[TEXT_WIN_ID], FONT_NORMAL, x * 8, y * 8 + 1, 0, 0, color, 0, text); } void DoSaveFailedScreen(u8 saveType) |