summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-10-30 13:03:32 -0200
committershennetsind <ind@henn.et>2013-10-30 13:03:32 -0200
commit629c80479f0276882ae998f8cefa28a376621c9a (patch)
tree0fe9db9c0285c530a0179b34af73a9ca339cc967
parentd080ed83f6c02ccf774cae906c4da698e793a310 (diff)
parent96a93098a1969567f1d12dd69859fa62174cd988 (diff)
downloadhercules-629c80479f0276882ae998f8cefa28a376621c9a.tar.gz
hercules-629c80479f0276882ae998f8cefa28a376621c9a.tar.bz2
hercules-629c80479f0276882ae998f8cefa28a376621c9a.tar.xz
hercules-629c80479f0276882ae998f8cefa28a376621c9a.zip
Merge branch 'master' of https://github.com/HerculesWS/Hercules
-rw-r--r--src/map/packets_struct.h14
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));