mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
- no bit fields, please!
The memory savings are not worth the negative side effects.
This commit is contained in:
parent
129aa864dd
commit
bca29ed402
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ kChannelMax = 4096,
|
|||
|
||||
struct RXBUCKET
|
||||
{
|
||||
unsigned int index : 13;
|
||||
unsigned int type : 3;
|
||||
uint16_t index;
|
||||
uint8_t type;
|
||||
};
|
||||
extern RXBUCKET rxBucket[];
|
||||
extern unsigned short bucketHead[];
|
||||
|
|
Loading…
Reference in a new issue