mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-16 15:41:16 +01:00
fix for 4-byte nodes on ARM
This commit is contained in:
parent
8839dfd211
commit
19d2d209b2
1 changed files with 7 additions and 4 deletions
|
@ -41,14 +41,17 @@
|
|||
/* This guy doesn't exist in 4-byte case */
|
||||
#define EXTRABITMASK_NEW 0x20
|
||||
|
||||
#define OLD_THREE_FIELDS \
|
||||
XP_U8 highByte; \
|
||||
XP_U8 lowByte; \
|
||||
XP_U8 bits
|
||||
|
||||
typedef struct array_edge_old {
|
||||
XP_U8 highByte;
|
||||
XP_U8 lowByte;
|
||||
XP_U8 bits;
|
||||
OLD_THREE_FIELDS;
|
||||
} array_edge_old;
|
||||
|
||||
typedef struct array_edge_new {
|
||||
array_edge_old o;
|
||||
OLD_THREE_FIELDS;
|
||||
XP_U8 moreBits;
|
||||
} array_edge_new;
|
||||
|
||||
|
|
Loading…
Reference in a new issue