shithub: rott

Download patch

ref: cf41d727a25a095ad548d6e5cd28cc37bdfa951d
parent: d6e6dfb3526f7f87abcfb55315c271ac0093e24a
author: LTCHIPS <ltchips>
date: Thu Jan 10 10:25:54 EST 2019

fixed argument bug where mouse info was being injected into argument strings

--- a/src/rt_main.c
+++ b/src/rt_main.c
@@ -230,7 +230,7 @@
 
     Z_Init(50000,10000000);
 
-    IN_Startup ();
+    
 
     InitializeGameCommands();
     if (standalone==false)
@@ -242,6 +242,8 @@
         BuildTables ();
         GetMenuInfo ();
     }
+    
+    IN_Startup ();
 
     SetRottScreenRes (iGLOBAL_SCREENWIDTH, iGLOBAL_SCREENHEIGHT);