aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-06-24 17:53:46 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-06-26 21:51:47 +0200
commitc401b7663d0854a7a3f5c35b6809faf65dc1fd66 (patch)
tree68e2f9af0115bc48fcc34ba41ceb1461bccf5f1d /src/main.c
parent70bc98f96c3e4ae7a45ff095c5f539711aaf7fb1 (diff)
downloadrts-c401b7663d0854a7a3f5c35b6809faf65dc1fd66.tar.gz
Implement main menu
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index fd0759f..8933639 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,4 +1,4 @@
-#include <game.h>
+#include <menu.h>
#include <system.h>
#include <stdlib.h>
@@ -6,7 +6,7 @@ int main(void)
{
int ret = EXIT_SUCCESS;
- if (system_init() || game())
+ if (system_init() || menu())
ret = EXIT_FAILURE;
system_deinit();