diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-29 00:59:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-29 00:59:56 +0300 |
commit | 7dff88ae9de70454e792bf90679948eb174b1aee (patch) | |
tree | f9f62c2a8553db75878094752d4f20ad1721b004 | |
parent | 3db999ff2d3324ffad6ba6a469ca224c8d864dc3 (diff) | |
download | mv-7dff88ae9de70454e792bf90679948eb174b1aee.tar.gz mv-7dff88ae9de70454e792bf90679948eb174b1aee.tar.bz2 mv-7dff88ae9de70454e792bf90679948eb174b1aee.tar.xz mv-7dff88ae9de70454e792bf90679948eb174b1aee.zip |
fix small cursor selection alignment.
-rw-r--r-- | src/actorsprite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actorsprite.cpp b/src/actorsprite.cpp index 7b9cb796c..83f104867 100644 --- a/src/actorsprite.cpp +++ b/src/actorsprite.cpp @@ -154,7 +154,7 @@ void ActorSprite::controlParticle(Particle *const particle) void ActorSprite::setTargetType(const TargetCursorType type) { static const int targetWidths[ActorSprite::NUM_TC] = {0, 0, 0}; - static const int targetHeights[ActorSprite::NUM_TC] = {0, -16, -32}; + static const int targetHeights[ActorSprite::NUM_TC] = {-16, -16, -32}; if (type == TCT_NONE) { |