summaryrefslogtreecommitdiff
path: root/src/gui/window.c
diff options
context:
space:
mode:
authorpacien2018-01-09 02:15:21 +0100
committerpacien2018-01-09 02:15:21 +0100
commit5beabe1a69e6dda3e139e95d24c3e9c8e027990a (patch)
tree6a4eb07cca4c6edfbfaddeac59fed99e4230f201 /src/gui/window.c
parent5980fa86c1fc90849102bbc24679423f978e2a50 (diff)
downloadmorpher-5beabe1a69e6dda3e139e95d24c3e9c8e027990a.tar.gz
Sources and import cleanup
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'src/gui/window.c')
-rw-r--r--src/gui/window.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gui/window.c b/src/gui/window.c
index 1859f58..e4eacea 100644
--- a/src/gui/window.c
+++ b/src/gui/window.c
@@ -1,11 +1,9 @@
1#include <stdlib.h>
2#include <assert.h>
3#include "gui/window.h" 1#include "gui/window.h"
4#include "MLV/MLV_all.h" 2#include <assert.h>
3#include <MLV/MLV_all.h>
5#include "painter/rasterizer.h" 4#include "painter/rasterizer.h"
6#include "common/mem.h" 5#include "common/mem.h"
7 6
8
9Window *window_create(int width, int height, char *title) { 7Window *window_create(int width, int height, char *title) {
10 assert(width > 0); 8 assert(width > 0);
11 assert(height > 0); 9 assert(height > 0);
@@ -83,4 +81,4 @@ void window_rendering(Window *window, PictureFrame *pictureFrame1, Canvas *canva
83 } 81 }
84 mode = EXITING; 82 mode = EXITING;
85 MLV_wait_seconds(15); 83 MLV_wait_seconds(15);
86} \ No newline at end of file 84}