aboutsummaryrefslogtreecommitdiff
path: root/drivers/include/gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/include/gfx.h')
-rw-r--r--drivers/include/gfx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/include/gfx.h b/drivers/include/gfx.h
index bafd7a3..19019a9 100644
--- a/drivers/include/gfx.h
+++ b/drivers/include/gfx.h
@@ -1,3 +1,4 @@
+#include <stdbool.h>
#include <stdint.h>
enum vga_color_t {
@@ -31,7 +32,7 @@ enum vga_color_t {
struct vbe_info_t;
-void gfx_init(struct vbe_info_t *vbe_mode_info);
+bool gfx_init(struct vbe_info_t *vbe_mode_info);
void gfx_drawpixel(int x, int y, uint32_t color);