mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
Extend xobject reference field size to fit 16384 sprites/walls
This commit is contained in:
parent
dd79c66f20
commit
e4174d4f2d
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ struct XSPRITE {
|
|||
unsigned int ate_5 : 2; // unused // fields in the future? must be signed also
|
||||
unsigned int at1a_2 : 6; // unused //
|
||||
|
||||
signed int reference : 14; // at0_0
|
||||
signed int reference : 15; // at0_0
|
||||
unsigned int state : 1; // State 0
|
||||
unsigned int busy : 17;
|
||||
unsigned int txID : 10; // TX ID
|
||||
|
@ -184,7 +184,7 @@ struct XSECTOR {
|
|||
}; // 60(0x3c) bytes
|
||||
|
||||
struct XWALL {
|
||||
signed int reference : 14;
|
||||
signed int reference : 15;
|
||||
unsigned int state : 1; // State
|
||||
unsigned int busy : 17;
|
||||
signed int data : 16; // Data
|
||||
|
|
Loading…
Reference in a new issue