aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-05-04 23:06:50 +0200
committerMarvin Borner2021-05-04 23:06:50 +0200
commit51016670a24092b6b9ecd0f50d1aaa976e780cc1 (patch)
tree028f9f0c825719721773e5fc38cf392a9ecc739f /apps
parent028fb44dc7f7b216f35569e232ded4256b517d30 (diff)
General fixes (see description) - closes #17
Somehow the Grub conversion (or anything before/between that) seems to have caused a *very* weird memory bug involving the heap/stack/sth overflowing into the video memory which will obviously result in strange undefined behaviour when data is written to the video memory. VERY STRANGE. Well, I need to prepare for my finals (Abitur) so I don't know whether I can fix this issue in the next few days. We'll see...
Diffstat (limited to 'apps')
-rw-r--r--apps/wm/wm.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/wm/wm.c b/apps/wm/wm.c
index a81c594..2bbabf5 100644
--- a/apps/wm/wm.c
+++ b/apps/wm/wm.c
@@ -582,11 +582,6 @@ int main(int argc, char **argv)
cursor = window_new(wm_client, vec2(0, 0), vec2(32, 32),
WF_NO_DRAG | WF_NO_FOCUS | WF_NO_RESIZE | WF_ALPHA);
- for (u32 i = 0; i < direct->ctx.bytes; i++)
- direct->ctx.fb[i] = 0x42;
- /* gfx_write(&direct->ctx, vec2(0, 0), FONT_32, COLOR_FG, "Loading Melvix..."); */
- while (1)
- ;
gfx_load_wallpaper(&wallpaper->ctx, "/res/wall.png");
memset(cursor->ctx.fb, 0, cursor->ctx.bytes);
gfx_load_wallpaper(&cursor->ctx, "/res/cursor.png");
@@ -594,7 +589,7 @@ int main(int argc, char **argv)
assert(io_control(IO_BUS, IOCTL_BUS_REGISTER, "wm") == EOK);
- assert(exec("chess", NULL) == EOK);
+ /* assert(exec("chess", NULL) == EOK); */
u8 msg[1024] = { 0 };
struct event_keyboard event_keyboard = { 0 };