summaryrefslogtreecommitdiffstats
path: root/sigmod/Sigmod.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigmod/Sigmod.cpp')
-rw-r--r--sigmod/Sigmod.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sigmod/Sigmod.cpp b/sigmod/Sigmod.cpp
index 26895d08..576eec0b 100644
--- a/sigmod/Sigmod.cpp
+++ b/sigmod/Sigmod.cpp
@@ -373,7 +373,7 @@ void Sigmod::Sigmod::setStartMap(const int startMap)
if (!m_singlePlayer)
emit(error(unused("startMap")));
if (!mapById(startMap))
- emit(error(bounds("startMap")));
+ emit(error(bounds("startMap", startMap)));
else
CHECK(startMap);
}
@@ -384,9 +384,9 @@ void Sigmod::Sigmod::setStartWarp(const int startWarp)
emit(error(unused("startWarp")));
const Map* map = mapById(m_startMap);
if (!map)
- emit(error(bounds("startMap")));
+ emit(error(bounds("startMap", m_startMap)));
else if (!map->warpById(startWarp))
- emit(error(bounds("startWarp")));
+ emit(error(bounds("startWarp", startWarp)));
else
CHECK(startWarp);
}