summaryrefslogtreecommitdiff
path: root/src/being/actorsprite.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-30 00:36:56 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-30 00:36:56 +0300
commit7969f0590204ac48d74e98c3211bca27693bac44 (patch)
tree78b2952b547aabe9f018e308dc57834322715707 /src/being/actorsprite.cpp
parent478ffec82dae4f55c38ccd424079166ec8c38905 (diff)
downloadplus-7969f0590204ac48d74e98c3211bca27693bac44.tar.gz
plus-7969f0590204ac48d74e98c3211bca27693bac44.tar.bz2
plus-7969f0590204ac48d74e98c3211bca27693bac44.tar.xz
plus-7969f0590204ac48d74e98c3211bca27693bac44.zip
Convert TargetCursorType enum into strong typed enum.
Diffstat (limited to 'src/being/actorsprite.cpp')
-rw-r--r--src/being/actorsprite.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/being/actorsprite.cpp b/src/being/actorsprite.cpp
index eb2268eb9..1f7ea4b95 100644
--- a/src/being/actorsprite.cpp
+++ b/src/being/actorsprite.cpp
@@ -52,7 +52,8 @@
#define end_foreach }
-AnimatedSprite *ActorSprite::targetCursor[TargetCursorType::NUM_TCT]
+AnimatedSprite *ActorSprite::targetCursor
+ [static_cast<size_t>(TargetCursorType::NUM_TCT)]
[static_cast<size_t>(TargetCursorSize::NUM_TC)];
bool ActorSprite::loaded = false;
@@ -145,7 +146,7 @@ void ActorSprite::controlParticle(Particle *const particle)
mChildParticleEffects.addLocally(particle);
}
-void ActorSprite::setTargetType(const TargetCursorType::Type type)
+void ActorSprite::setTargetType(const TargetCursorTypeT type)
{
if (type == TargetCursorType::NONE)
{
@@ -351,7 +352,7 @@ void ActorSprite::removeActorSpriteListener(ActorSpriteListener *const
mActorSpriteListeners.remove(listener);
}
-static const char *cursorType(const int type)
+static const char *cursorType(const TargetCursorTypeT type)
{
switch (type)
{
@@ -387,7 +388,7 @@ void ActorSprite::initTargetCursor()
targetCursor[type][size] = AnimatedSprite::load(
Theme::resolveThemePath(strprintf(
targetCursorFile.c_str(),
- cursorType(type),
+ cursorType(static_cast<TargetCursorTypeT>(type)),
cursorSize(static_cast<TargetCursorSizeT>(size)))));
}
end_foreach