diff options
Diffstat (limited to 'source/nds/draw.h')
-rw-r--r-- | source/nds/draw.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/nds/draw.h b/source/nds/draw.h index dc34bf7..b81328a 100644 --- a/source/nds/draw.h +++ b/source/nds/draw.h @@ -161,7 +161,9 @@ extern void draw_message(void* screen_address, u16 *screen_bg, u32 sx, u32 sy, u extern void draw_string_vcenter(void* screen_address, u32 sx, u32 sy, u32 width, u32 color_fg, char *string); -#define MAX_SCROLL_STRING 8 +#define MAX_SCROLL_STRING 16 +extern u32 hscroll_init(void* screen_address, u32 sx, u32 sy, u32 width, + u32 color_bg, u32 color_fg, char *string); extern u32 draw_hscroll_init(void* screen_address, u32 sx, u32 sy, u32 width, u32 color_bg, u32 color_fg, char *string); extern u32 draw_hscroll(u32 index, s32 scroll_val); |