diff options
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; |