summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-19 02:33:17 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-19 02:33:17 +0300
commit94ab5a24a5deee4102f61ce1720c92eef47036f9 (patch)
tree17e7581bee7cfff26a7a93a5a59efdc30940c4f7
parentc3395e41d8b48de2958a3d6b9f9e07c2e44b65c3 (diff)
downloadplus-94ab5a24a5deee4102f61ce1720c92eef47036f9.tar.gz
plus-94ab5a24a5deee4102f61ce1720c92eef47036f9.tar.bz2
plus-94ab5a24a5deee4102f61ce1720c92eef47036f9.tar.xz
plus-94ab5a24a5deee4102f61ce1720c92eef47036f9.zip
Fix code style in emoteshortcut.
-rw-r--r--src/emoteshortcut.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emoteshortcut.cpp b/src/emoteshortcut.cpp
index 84643df4e..e60c05cb0 100644
--- a/src/emoteshortcut.cpp
+++ b/src/emoteshortcut.cpp
@@ -75,7 +75,8 @@ void EmoteShortcut::useEmote(const int index) const
if (!localPlayer)
return;
- if (index > 0 && index <= SHORTCUT_EMOTES)
+ if (index > 0 &&
+ index <= SHORTCUT_EMOTES)
{
if (mEmotes[index - 1] > 0)
localPlayer->emote(mEmotes[index - 1]);