diff options
author | shennetsind <ind@henn.et> | 2013-10-30 13:03:32 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-30 13:03:32 -0200 |
commit | 629c80479f0276882ae998f8cefa28a376621c9a (patch) | |
tree | 0fe9db9c0285c530a0179b34af73a9ca339cc967 /src | |
parent | d080ed83f6c02ccf774cae906c4da698e793a310 (diff) | |
parent | 96a93098a1969567f1d12dd69859fa62174cd988 (diff) | |
download | hercules-629c80479f0276882ae998f8cefa28a376621c9a.tar.gz hercules-629c80479f0276882ae998f8cefa28a376621c9a.tar.bz2 hercules-629c80479f0276882ae998f8cefa28a376621c9a.tar.xz hercules-629c80479f0276882ae998f8cefa28a376621c9a.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'src')
-rw-r--r-- | src/map/packets_struct.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index e9a582582..813aebee0 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -215,9 +215,9 @@ struct NORMALITEM_INFO { #endif #if PACKETVER >= 20120925 struct { - unsigned int IsIdentified : 1; - unsigned int PlaceETCTab : 1; - unsigned int SpareBits : 6; + unsigned char IsIdentified : 1; + unsigned char PlaceETCTab : 1; + unsigned char SpareBits : 6; } Flag; #endif } __attribute__((packed)); @@ -252,10 +252,10 @@ struct EQUIPITEM_INFO { #endif #if PACKETVER >= 20120925 struct { - unsigned int IsIdentified : 1; - unsigned int IsDamaged : 1; - unsigned int PlaceETCTab : 1; - unsigned int SpareBits : 5; + unsigned char IsIdentified : 1; + unsigned char IsDamaged : 1; + unsigned char PlaceETCTab : 1; + unsigned char SpareBits : 5; } Flag; #endif } __attribute__((packed)); |