Skip to content

Commit 21cfee9

Browse files
committed
Fix a compile derp
1 parent ab0ce51 commit 21cfee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prime-practice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ void MapScreenDrawHook(CAutoMapper *mapper, const CStateManager& mgr, const CTra
349349
mapper->Draw(mgr, xf, alpha);
350350
EAutoMapperState state = mapper->state();
351351
EAutoMapperState nextState = mapper->nextState();
352-
NewPauseScreen::instance->mapActive = itstate == EAutoMapperState::MapScreen && nextState == EAutoMapperState::MapScreen;
352+
NewPauseScreen::instance->mapActive = state == EAutoMapperState::MapScreen && nextState == EAutoMapperState::MapScreen;
353353
}
354354

355355
void MapScreenInputHook(CAutoMapper *mapper, const CFinalInput &input, CStateManager &mgr) {

0 commit comments

Comments
 (0)