summaryrefslogtreecommitdiff
path: root/src/setup/execute.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/setup/execute.c')
-rw-r--r--src/setup/execute.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/setup/execute.c b/src/setup/execute.c
index a43c3220..0b5faa65 100644
--- a/src/setup/execute.c
+++ b/src/setup/execute.c
@@ -252,26 +252,3 @@ txt_window_action_t *TestConfigAction(void)
return test_action;
}
-// Invokes Doom to find which IWADs are installed.
-// This is a cheap hack to avoid duplication of the complicated install
-// path searching code inside Doom.
-
-int FindInstalledIWADs(void)
-{
- execute_context_t *context;
- int result;
-
- context = NewExecuteContext();
- AddCmdLineParameter(context, "-findiwads");
- result = ExecuteDoom(context);
-
- if (result < 0)
- {
- return 0;
- }
- else
- {
- return result;
- }
-}
-