diff options
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ingen/main.cpp b/src/ingen/main.cpp index 0a3129a6..1407dfda 100644 --- a/src/ingen/main.cpp +++ b/src/ingen/main.cpp @@ -161,7 +161,6 @@ main(int argc, char** argv) // Load a patch if (conf.option("load").is_valid() && engine_interface) { - boost::optional<Path> data_path = Path("/"); boost::optional<Path> parent; boost::optional<Symbol> symbol; const Raul::Atom& path_option = conf.option("path"); @@ -197,7 +196,7 @@ main(int argc, char** argv) if (conf.option("gui").get_bool()) engine_interface->get("ingen:plugins"); world->parser()->parse_file( - world, engine_interface.get(), uri, data_path, parent, symbol); + world, engine_interface.get(), uri, parent, symbol); } // Load GUI |