summaryrefslogtreecommitdiff
path: root/src/koopatlas/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/koopatlas/core.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/koopatlas/core.cpp b/src/koopatlas/core.cpp
index 7435103..164ea89 100644
--- a/src/koopatlas/core.cpp
+++ b/src/koopatlas/core.cpp
@@ -429,6 +429,13 @@ bool dScKoopatlas_c::canDoStuff() {
return true;
}
+bool dScKoopatlas_c::mapIsRunning() {
+ if (QueryGlobal5758(0xFFFFFFFF)) return false;
+ if (CheckIfWeCantDoStuff()) return false;
+ if (state.getCurrentState() != &StateID_Normal) return false;
+ return true;
+}
+
int dScKoopatlas_c::onExecute() {
if (!canDoStuff()) return true;
@@ -503,8 +510,6 @@ void dScKoopatlas_c::executeState_Normal() {
} else if (nowPressed & WPAD_A) {
pathManager.unlockAllPaths(0);
}
-
- pathManager.execute();
}
void dScKoopatlas_c::executeState_CSMenu() {