diff options
author | Marvin Borner | 2020-08-17 13:52:51 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-17 13:52:51 +0200 |
commit | ca7d400b7705ba887df69391cb774d4de83e8bf3 (patch) | |
tree | a59b97c9405413d1cb01e05c3f0c760554cecc5c /apps | |
parent | 0ba9ee15d0a229c619f35a5db04e45fe8861c3c9 (diff) |
Added event unmap
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,8 +23,8 @@ void main(char **argv) print("WM loaded.\n"); printf("VBE: %dx%d\n", vbe->width, vbe->height); - const u32 color[3] = { 0xff, 0xff, 0 }; - const u32 text[3] = { 0, 0, 0 }; + const u32 color[3] = { 0, 0, 0 }; + const u32 text[3] = { 0xff, 0xff, 0xff }; vesa_fill(vbe, color); gui_init("/font/spleen-16x32.psfu"); gui_write(vbe, 50, 50, text, "hallo"); |