summaryrefslogtreecommitdiff
path: root/src/scenes/resultView.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scenes/resultView.c')
-rw-r--r--src/scenes/resultView.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scenes/resultView.c b/src/scenes/resultView.c
index e51898e..0017d5a 100644
--- a/src/scenes/resultView.c
+++ b/src/scenes/resultView.c
@@ -7,7 +7,6 @@
#include "../ui_elements/UI.h"
#include "../resources/resources.h"
-static const int SCROLL_SPEED = 10;
static const uint8_t MAX_TINT = 96;
typedef struct {
@@ -62,7 +61,7 @@ bool drawResultView(void *self) {
DrawRecBordered(body, WHITE, data->value->result == RESULT_OK ? COLORSCHEME_GREEN : COLORSCHEME_ORANGE, BORDER);
DrawTextInRec(body, data->value->stdout_sb,
- GetMainFont(), 20, COLORSCHEME_BROWN, 3, &data->scroll);
+ GetMainFont(), TEXT_FONT_SIZE, COLORSCHEME_BROWN, 3, &data->scroll);
return true;
}