summaryrefslogtreecommitdiff
path: root/src/being/being.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-09 00:26:41 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-09 00:26:41 +0300
commit9c46394f54db8c1b9e357ad555f3db96251a616d (patch)
treeb1ab9e8ebec6d9b4d91a9b705b6cc0c3682a5fac /src/being/being.h
parente0d14cf8d3c809a0a5291823d3a962a4835a8f6e (diff)
downloadplus-9c46394f54db8c1b9e357ad555f3db96251a616d.tar.gz
plus-9c46394f54db8c1b9e357ad555f3db96251a616d.tar.bz2
plus-9c46394f54db8c1b9e357ad555f3db96251a616d.tar.xz
plus-9c46394f54db8c1b9e357ad555f3db96251a616d.zip
Add some missing checks to being found by paranucker.
Diffstat (limited to 'src/being/being.h')
-rw-r--r--src/being/being.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being/being.h b/src/being/being.h
index ff00d5bef..8926e5548 100644
--- a/src/being/being.h
+++ b/src/being/being.h
@@ -1069,9 +1069,9 @@ class Being notfinal : public ActorSprite,
Vector mWalkSpeed;
float mSpeed;
std::string mIp;
- int *mSpriteRemap;
- int *mSpriteHide;
- int *mSpriteDraw;
+ int *mSpriteRemap A_NONNULLPOINTER;
+ int *mSpriteHide A_NONNULLPOINTER;
+ int *mSpriteDraw A_NONNULLPOINTER;
std::string mComment;
#ifdef EATHENA_SUPPORT
std::string mBuyBoard;