diff options
Diffstat (limited to '')
| -rw-r--r-- | src/koopatlas/core.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/koopatlas/core.cpp b/src/koopatlas/core.cpp index a48a565..c1f7a43 100644 --- a/src/koopatlas/core.cpp +++ b/src/koopatlas/core.cpp @@ -479,10 +479,10 @@ void dScKoopatlas_c::executeState_Normal() {  	int nowPressed = Remocon_GetPressed(GetActiveRemocon());  	// Nothing related to the menu is going on -	if (nowPressed & WPAD_ONE) { +	if (nowPressed & WPAD_ONE && !pathManager.isEnteringLevel) {  		STKI_SHOW(this->stockItem) = true;  		state.setState(&StateID_PowerupsWait); -	} else if (nowPressed & WPAD_PLUS) { +	} else if (nowPressed & WPAD_PLUS && !pathManager.isEnteringLevel) {  		CSMENU_ACTIVE(this->csMenu) = true;  		state.setState(&StateID_CSMenu);  	// } else if (nowPressed & WPAD_A) {  | 
