aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c
index 072e24e..01eb47d 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -11,7 +11,8 @@ int main(int argc, char **argv)
// TODO: Fix GPF if file doesn't exist
int wm = exec("/wm", "wm", argv[1], NULL);
- int test = exec("/window", "test", NULL);
+ /* int test = exec("/window", "test", NULL); */
+ int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL);
- return wm + test;
+ return wm + mandelbrot;
}