diff options
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/ingen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ingen/ingen.cpp b/src/ingen/ingen.cpp index 9f939621..e4f0a946 100644 --- a/src/ingen/ingen.cpp +++ b/src/ingen/ingen.cpp @@ -90,7 +90,8 @@ main(int argc, char** argv) // Create world try { - world = new Ingen::World(argc, argv, NULL, NULL, NULL); + world = new Ingen::World(NULL, NULL, NULL); + world->load_configuration(argc, argv); if (argc <= 1) { world->conf().print_usage("ingen", cout); return EXIT_FAILURE; |