From 87f23f6d38cecc843ca683b0d203ffbd1e039e22 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 26 Feb 2012 02:10:32 +0000 Subject: [PATCH] - Use a signed integer for the script number when loading the transitional ACS binary format in order to be congruent with the present-day binary format. SVN r3388 (trunk) --- src/p_acs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_acs.h b/src/p_acs.h index fb33a6504..f93773635 100644 --- a/src/p_acs.h +++ b/src/p_acs.h @@ -97,7 +97,7 @@ struct ScriptPtr3 // The intermediate ZDoom version struct ScriptPtr1 { - WORD Number; + SWORD Number; WORD Type; DWORD Address; DWORD ArgCount;