shithub: choc

Download patch

ref: 3c9bfb89c3a444883dbc352763a98996339e9d3a
parent: adedabdb62dfbccd3d3ec525e17b59aab8d7a244
author: Turo Lamminen <turol@iki.fi>
date: Wed Sep 7 11:26:56 EDT 2022

doom: Move forwardmove extern declaration to g_game.h

--- a/src/doom/d_main.c
+++ b/src/doom/d_main.c
@@ -1462,7 +1462,6 @@
     if ( (p=M_CheckParm ("-turbo")) )
     {
 	int     scale = 200;
-	extern fixed_t forwardmove[2];
 	extern fixed_t sidemove[2];
 	
 	if (p<myargc-1)
--- a/src/doom/g_game.h
+++ b/src/doom/g_game.h
@@ -77,5 +77,9 @@
 
 extern int vanilla_savegame_limit;
 extern int vanilla_demo_limit;
+
+extern fixed_t forwardmove[2];
+
+
 #endif