diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-24 22:03:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-25 10:45:54 +0300 |
commit | 67f8b40f80368dad17a9da50c78923433e266f54 (patch) | |
tree | 4667906e1ab807c31216f89da450b3cce5585150 /src/item.cpp | |
parent | 286f34b97b8a4fb56fde1f9e5f3a95ba0c807441 (diff) | |
download | plus-67f8b40f80368dad17a9da50c78923433e266f54.tar.gz plus-67f8b40f80368dad17a9da50c78923433e266f54.tar.bz2 plus-67f8b40f80368dad17a9da50c78923433e266f54.tar.xz plus-67f8b40f80368dad17a9da50c78923433e266f54.zip |
Fix code style.
Diffstat (limited to 'src/item.cpp')
-rw-r--r-- | src/item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/item.cpp b/src/item.cpp index 3b4beacdc..58148d2b1 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -144,7 +144,7 @@ void Item::setCard(const int index, const int id) int Item::getCard(const int index) const { if (index < 0 || index >= maxCards) - return 0 ; + return 0; return mCards[index]; } |