diff options
Diffstat (limited to 'apps/mandelbrot.c')
-rw-r--r-- | apps/mandelbrot.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/mandelbrot.c b/apps/mandelbrot.c index dc4f6ce..7a7aee1 100644 --- a/apps/mandelbrot.c +++ b/apps/mandelbrot.c @@ -57,6 +57,8 @@ int main() print("[mandelbrot window loaded]\n"); struct window win = { 0 }; + win.width = 500; + win.height = 300; gui_new_window(&win); gui_fill(&win, COLOR_BG); |