diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-11-19 02:33:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-11-19 02:33:17 +0300 |
commit | 94ab5a24a5deee4102f61ce1720c92eef47036f9 (patch) | |
tree | 17e7581bee7cfff26a7a93a5a59efdc30940c4f7 /src/emoteshortcut.cpp | |
parent | c3395e41d8b48de2958a3d6b9f9e07c2e44b65c3 (diff) | |
download | plus-94ab5a24a5deee4102f61ce1720c92eef47036f9.tar.gz plus-94ab5a24a5deee4102f61ce1720c92eef47036f9.tar.bz2 plus-94ab5a24a5deee4102f61ce1720c92eef47036f9.tar.xz plus-94ab5a24a5deee4102f61ce1720c92eef47036f9.zip |
Fix code style in emoteshortcut.
Diffstat (limited to 'src/emoteshortcut.cpp')
-rw-r--r-- | src/emoteshortcut.cpp | 3 |
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]); |