summaryrefslogtreecommitdiff
path: root/src/main/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/main.c')
-rw-r--r--src/main/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/main.c b/src/main/main.c
index 11d464e..59c76b6 100644
--- a/src/main/main.c
+++ b/src/main/main.c
@@ -21,6 +21,8 @@
#include "ui/ui.h"
int main(void) {
+ ui_init(640, 640);
ui_set_title("Tris Game");
- return 0;
+
+ return EXIT_SUCCESS;
}