summaryrefslogtreecommitdiffstats
path: root/sigmod/Trainer.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-11-08 06:15:08 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-11-08 06:15:08 +0000
commit8bad37e82371bd41864903ac0d6f49808ad119bf (patch)
tree77f0cb46059654cefb357d6eb4064c5740edf3d4 /sigmod/Trainer.cpp
parentc127c0dae65a7600e0ab30b634f25d4915c61d16 (diff)
[FIX] No more asserts in sigmod
[FIX] Moved to using *ById instead of *Index methods in sigmod [FIX] Tilemaps are now collaged (not completely done on the editing side yet) [FIX] Removed the resource files (drawn natively instead) [FIX] ATBTimer now uses the built-in QTimer in a QObject [FIX] Coordinates are now edited on the map for warps, trainers, and effects [FIX] Tiles are now completely scripted [FIX] Config is now thread-safe git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@308 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmod/Trainer.cpp')
-rw-r--r--sigmod/Trainer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sigmod/Trainer.cpp b/sigmod/Trainer.cpp
index d169d2d6..b67a932b 100644
--- a/sigmod/Trainer.cpp
+++ b/sigmod/Trainer.cpp
@@ -111,7 +111,7 @@ void Sigmod::Trainer::setMoneyFactor(const int moneyFactor)
void Sigmod::Trainer::setSkin(const int skin)
{
- if (qobject_cast<const Sigmod*>(sigmod())->skinIndex(skin) == INT_MAX)
+ if (!sigmod()->skinById(skin))
emit(error(bounds("skin")));
else
CHECK(skin);