diff options
author | Marvin Borner | 2021-02-18 23:08:34 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-18 23:08:34 +0100 |
commit | f7a03b00f0c90680a88db0a49ed30eaca529a932 (patch) | |
tree | 10b74727dbb4e140ba7e89ad0bc3eb92359fe576 /apps | |
parent | 2ae5e5b31a943719083dd64ee24c4200220f7ff0 (diff) |
Fixed text writing
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,7 @@ int main(int argc, char **argv) cursor = window_create(wm_client, "cursor", vec3(0, 0, 0), vec2(32, 32), WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE); - //gfx_fill(&root->ctx, COLOR_WHITE); + gfx_write(&root->ctx, vec2(0, 0), FONT_32, COLOR_FG, "Loading Melvix..."); gfx_load_wallpaper(&root->ctx, "/res/wall.png"); gfx_load_wallpaper(&cursor->ctx, "/res/cursor.png"); |