diff options
author | Marvin Borner | 2021-02-16 22:33:42 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-16 22:33:42 +0100 |
commit | 392b0ff1fcc52c189f131c71ea2a969d1b8c5690 (patch) | |
tree | 22cc9e27c09cb9887ca6972e07602070cda25451 /apps | |
parent | 1287f9dfe987f0456e4fb0741385d5f0278ef53b (diff) |
Okay!
Diffstat (limited to 'apps')
-rw-r--r-- | apps/exec.c | 1 | ||||
-rw-r--r-- | apps/wm.c | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/exec.c b/apps/exec.c index 8e3bf95..ae7ca35 100644 --- a/apps/exec.c +++ b/apps/exec.c @@ -46,6 +46,7 @@ void on_submit(struct gui_event_keyboard *event, struct element *elem) int main() { + log("exec loaded\n"); struct element *root = gui_init("Exec", WIDTH, HEIGHT, COLOR_BLACK); struct element *input = gui_add_text_input(root, 0, 0, 100, FONT_32, COLOR_WHITE, COLOR_BLACK); @@ -311,6 +311,8 @@ int main(int argc, char **argv) err(1, "POLL ERROR!\n"); } + assert(msg.magic == MSG_MAGIC); + switch (msg.type) { case GFX_NEW_CONTEXT: { struct context *ctx = msg.data; @@ -340,6 +342,7 @@ int main(int argc, char **argv) redraw_focused(); break; default: + log("Unknown WM request %d\n", msg.type); break; } }; |