diff options
author | Marvin Borner | 2021-02-14 17:07:29 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-14 17:07:29 +0100 |
commit | 1287f9dfe987f0456e4fb0741385d5f0278ef53b (patch) | |
tree | 64d3da484a4d186a725779f20d339432d51f441a /libgui/gui.c | |
parent | bc4e62f629a392e1a4cf204665e91c57f4e619b2 (diff) |
Message waiting and more!
Diffstat (limited to 'libgui/gui.c')
-rw-r--r-- | libgui/gui.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgui/gui.c b/libgui/gui.c index 9b49c2e..052a07b 100644 --- a/libgui/gui.c +++ b/libgui/gui.c @@ -9,7 +9,7 @@ #include <input.h> #include <list.h> #include <mem.h> -#include <print.h> +#include <msg.h> #include <str.h> #include <sys.h> @@ -200,6 +200,7 @@ static int absolute_y_off(struct element *elem) struct context *gui_get_context(int x, int y, u32 width, u32 height) { + log("GET CONTEXT: %dx%d\n", width, height); struct context *ctx = malloc(sizeof(*ctx)); ctx->pid = getpid(); ctx->x = x; |