summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2013-04-09 22:30:04 +0200
committerTreeki <treeki@gmail.com>2013-04-09 22:30:04 +0200
commit97b5d12b735392b51c04076e5515a90a6f1ae94b (patch)
treeb9b95ce1c55f67dc7ac8a4cb3e1f625d10a2b8fe
parent84825d9314ddffccd65c387604ed51f529fa5cab (diff)
downloadkamek-97b5d12b735392b51c04076e5515a90a6f1ae94b.tar.gz
kamek-97b5d12b735392b51c04076e5515a90a6f1ae94b.zip
disable the glitchy debug keys for skipping levels
Diffstat (limited to '')
-rw-r--r--src/koopatlas/core.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/koopatlas/core.cpp b/src/koopatlas/core.cpp
index 810c25d..1b2db0d 100644
--- a/src/koopatlas/core.cpp
+++ b/src/koopatlas/core.cpp
@@ -538,6 +538,7 @@ void dScKoopatlas_c::executeState_Normal() {
CSMENU_ACTIVE(this->csMenu) = true;
state.setState(&StateID_CSMenu);
hud->hideAll();
+#ifdef NEWER_DEBUG
} else if (nowPressed & WPAD_MINUS) {
pathManager.unlockAllPaths(2);
} else if (nowPressed & WPAD_A) {
@@ -546,6 +547,7 @@ void dScKoopatlas_c::executeState_Normal() {
for (int w = 0; w < 6; w++)
for (int l = 0; l < 6; l++)
save->SetLevelCondition(w, l, COND_COIN_ALL);
+#endif
}
}