diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-17 20:06:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-17 21:17:11 +0300 |
commit | 5b5257728500b358300f6e8824927c29d6b09618 (patch) | |
tree | 9ab5411177711dd344e9f5829e48cd975b2c223b /src/being/being.h | |
parent | e978599ccdfd3fcb073a4614056557f284b8d11b (diff) | |
download | plus-5b5257728500b358300f6e8824927c29d6b09618.tar.gz plus-5b5257728500b358300f6e8824927c29d6b09618.tar.bz2 plus-5b5257728500b358300f6e8824927c29d6b09618.tar.xz plus-5b5257728500b358300f6e8824927c29d6b09618.zip |
fix const in being class.
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being/being.h b/src/being/being.h index c2d9dfc00..6e9d55768 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -888,7 +888,7 @@ class Being : public ActorSprite, public ConfigListener static uint8_t genderToInt(const Gender sex) A_WARN_UNUSED; - static Gender intToGender(uint8_t sex) A_WARN_UNUSED; + static Gender intToGender(const uint8_t sex) A_WARN_UNUSED; NextSoundInfo mNextSound; |