summaryrefslogtreecommitdiffstats
path: root/pokemod/CoinList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/CoinList.cpp')
-rw-r--r--pokemod/CoinList.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/pokemod/CoinList.cpp b/pokemod/CoinList.cpp
index d238807d..f3bff007 100644
--- a/pokemod/CoinList.cpp
+++ b/pokemod/CoinList.cpp
@@ -124,15 +124,13 @@ Script CoinList::script() const
const CoinListObject* CoinList::object(const int index) const
{
- if (objectCount() <= index)
- return NULL;
+ Q_ASSERT(index < objectCount());
return m_objects.at(index);
}
CoinListObject* CoinList::object(const int index)
{
- if (objectCount() <= index)
- return NULL;
+ Q_ASSERT(index < objectCount());
return m_objects[index];
}
@@ -184,8 +182,7 @@ CoinListObject* CoinList::newObject(CoinListObject* object)
void CoinList::deleteObject(const int index)
{
- if (objectCount() <= index)
- return;
+ Q_ASSERT(index < objectCount());
delete m_objects[index];
m_objects.removeAt(index);
}