commit 1ef1524440999b45cd0cafd515756001a4c5fae9
Author: Turo Lamminen <turol@iki.fi>
AuthorDate: Sat Sep 17 16:35:04 2022 +0300
Commit: Turo Lamminen <turol@iki.fi>
CommitDate: Wed Sep 28 11:13:50 2022 +0300
strife: Fix forwardmove and sidemove extern declaration types
---
src/strife/d_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/strife/d_main.c b/src/strife/d_main.c
index ddbc9d06..4ee73039 100644
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -1699,8 +1699,8 @@ void D_DoomMain (void)
if ( (p=M_CheckParm ("-turbo")) )
{
int scale = 200;
- extern int forwardmove[2];
- extern int sidemove[2];
+ extern fixed_t forwardmove[2];
+ extern fixed_t sidemove[2];
if (p<myargc-1)
scale = atoi (myargv[p+1]);