diff options
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 530b264615..56dd5f73e7 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1960,7 +1960,7 @@ void Main::cleanup() { if (OS::get_singleton()->is_restart_on_exit_set()) { //attempt to restart with arguments String exec = OS::get_singleton()->get_executable_path(); - List<String> args = OS::get_singleton()->get_restart_on_exit_argumens(); + List<String> args = OS::get_singleton()->get_restart_on_exit_arguments(); OS::ProcessID pid = 0; OS::get_singleton()->execute(exec, args, false, &pid); OS::get_singleton()->set_restart_on_exit(false, List<String>()); //clear list (uses memory) |