summaryrefslogtreecommitdiff
path: root/src/item.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-24 22:03:11 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-25 10:45:54 +0300
commit67f8b40f80368dad17a9da50c78923433e266f54 (patch)
tree4667906e1ab807c31216f89da450b3cce5585150 /src/item.cpp
parent286f34b97b8a4fb56fde1f9e5f3a95ba0c807441 (diff)
downloadplus-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.cpp2
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];
}