summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
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 f99c74e..f291221 100644
--- a/src/main.c
+++ b/src/main.c
@@ -220,11 +220,11 @@ static int setup_from_args(til_args_t *args, setup_t *res_setup, const til_setti
*/
srand(setup.seed);
- setup.module_settings = til_settings_new("module", args->module);
+ setup.module_settings = til_settings_new(NULL, "module", args->module);
if (!setup.module_settings)
goto _err;
- setup.video_settings = til_settings_new("video", args->video);
+ setup.video_settings = til_settings_new(NULL, "video", args->video);
if (!setup.video_settings)
goto _err;
© All Rights Reserved