mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
- 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)
This commit is contained in:
parent
cf0f0b964a
commit
87f23f6d38
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ struct ScriptPtr3
|
||||||
// The intermediate ZDoom version
|
// The intermediate ZDoom version
|
||||||
struct ScriptPtr1
|
struct ScriptPtr1
|
||||||
{
|
{
|
||||||
WORD Number;
|
SWORD Number;
|
||||||
WORD Type;
|
WORD Type;
|
||||||
DWORD Address;
|
DWORD Address;
|
||||||
DWORD ArgCount;
|
DWORD ArgCount;
|
||||||
|
|
Loading…
Reference in a new issue