aboutsummaryrefslogtreecommitdiffstats
path: root/demos/3rdparty/doom/i_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/3rdparty/doom/i_main.c')
-rw-r--r--demos/3rdparty/doom/i_main.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/demos/3rdparty/doom/i_main.c b/demos/3rdparty/doom/i_main.c
deleted file mode 100644
index 5c40432a..00000000
--- a/demos/3rdparty/doom/i_main.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "gfx.h"
-
-#include "doomdef.h"
-
-#include "m_argv.h"
-#include "d_main.h"
-
-// Emulate a command line
-static const char const *argv[] = { "doom" };
-
-int main(void) {
- gfxInit();
-
- myargc = sizeof(argv)/sizeof(argv[0]);
- myargv = argv;
- D_DoomMain();
-}