diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-14 09:55:30 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-11-14 22:21:17 -0500 |
commit | 7e27a0746de931a99d78e5db584e8fbdb84c8edd (patch) | |
tree | 53ddda7fa118f6ec783c37c534589ff1cc83e5a0 /src | |
parent | b3e593dff5cf8f062afe5b03bb38937f5c23f4ec (diff) |
Misc text clean-up
Diffstat (limited to 'src')
-rw-r--r-- | src/braille.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/braille.c b/src/braille.c index b4ee43ad0..704f50760 100644 --- a/src/braille.c +++ b/src/braille.c @@ -8,7 +8,11 @@ // For printing braille messages, see ScrCmd_braillemessage ALIGNED(4) -static const u8 sScrollDistances[] = {1, 2, 4}; +static const u8 sScrollDistances[] = { + [OPTIONS_TEXT_SPEED_SLOW] = 1, + [OPTIONS_TEXT_SPEED_MID] = 2, + [OPTIONS_TEXT_SPEED_FAST] = 4, +}; static const u16 sFont_Braille[] = INCBIN_U16("graphics/fonts/braille.fwjpnfont"); static void DecompressGlyph_Braille(u16); |