From deb463884756dad5a9e89ce2cd43bc1ab4b2141a Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Wed, 24 Oct 2018 22:24:53 +0200 Subject: [PATCH] Fixes a bad help text --- src/main.c | 2 +- src/tooltip.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index f6c3232..479f1ff 100644 --- a/src/main.c +++ b/src/main.c @@ -103,7 +103,7 @@ static char *how_to_play_tooltip[] = { "HOW TO PLAY", "", "", " NAVIGATION: Use ARROWS or WASD or HJKL to move", "", - " Controller: RIGHT STICK or D-PAD", "", + " Controller: LEFT STICK or D-PAD", "", "", " ATTACK: Walk into a monster to attack it", "", "", diff --git a/src/tooltip.c b/src/tooltip.c index aa49c91..87d31df 100644 --- a/src/tooltip.c +++ b/src/tooltip.c @@ -86,7 +86,7 @@ tooltip_create(char **content, Camera *cam) } Sprite *sprite = gui_util_create_tooltip_frame_sprite(BOTTOM_GUI_WIDTH/16 - 6, - (Uint32) ((rowCount * 9 + 48)/16), + (Uint32) ((rowCount * 8 + 48)/16), cam); sprite->pos.x = 48; sprite->pos.y = 48;