diff options
author | Marvin Borner | 2021-05-20 22:18:35 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 22:19:20 +0200 |
commit | d8d17375291f89d37cad43df36c11d9c132e23be (patch) | |
tree | ed6ba70ac6bd6b4e50dde6e1a0b2d62b7881e721 /apps | |
parent | 298aaf63f15350e6248d5a96e8c6a63b0ec93e0f (diff) |
Added BGA driver and generic FB wrapper
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/wm/main.c b/apps/wm/main.c index 83dc20b..0d00427 100644 --- a/apps/wm/main.c +++ b/apps/wm/main.c @@ -8,10 +8,10 @@ #include <libgui/gfx.h> #include <libgui/gui.h> #include <libgui/msg.h> -#include <libgui/vesa.h> #include <libtxt/keymap.h> #include <list.h> #include <rand.h> +#include <sys.h> #define WINDOW_MOVE_TIMEOUT 20 @@ -37,7 +37,7 @@ struct rectangle { // Global vars ftw! static u8 bypp = 4; -static struct vbe screen = { 0 }; +static struct fb_generic screen = { 0 }; static struct list *windows = NULL; // THIS LIST SHALL BE SORTED BY Z-INDEX! static struct window *direct = NULL; static struct window *wallpaper = NULL; |