aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/include')
-rw-r--r--src/lib/include/draw.h2
-rw-r--r--src/lib/include/keyboard.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/include/draw.h b/src/lib/include/draw.h
index 893c5a3..5296b92 100644
--- a/src/lib/include/draw.h
+++ b/src/lib/include/draw.h
@@ -48,6 +48,8 @@ void g_fillcircle(fb_t *fb, int cx, int cy, int r, color_t c);
void g_blit(fb_t *dst, int x, int y, fb_t *src);
void g_blit_region(fb_t *dst, int x, int y, fb_t *src, fb_region_t reg);
+void g_scroll_up(fb_t *fb, int l);
+
// ---- Text manipulation
font_t *g_load_font(const char* fontname);
diff --git a/src/lib/include/keyboard.h b/src/lib/include/keyboard.h
index 2842936..0d5a97a 100644
--- a/src/lib/include/keyboard.h
+++ b/src/lib/include/keyboard.h
@@ -1,7 +1,8 @@
#pragma once
-#include <proto/keymap_file.h>
+#include <proto/keyboard.h>
+#include <proto/keymap_file.h>
#define KBD_CHAR 0x01
#define KBD_ALT 0x02