aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-02-16 22:33:42 +0100
committerMarvin Borner2021-02-16 22:33:42 +0100
commit392b0ff1fcc52c189f131c71ea2a969d1b8c5690 (patch)
tree22cc9e27c09cb9887ca6972e07602070cda25451 /apps
parent1287f9dfe987f0456e4fb0741385d5f0278ef53b (diff)
Okay!
Diffstat (limited to 'apps')
-rw-r--r--apps/exec.c1
-rw-r--r--apps/wm.c3
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);
diff --git a/apps/wm.c b/apps/wm.c
index bcb3e71..3c952c8 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -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;
}
};