Skip to content

Commit

Permalink
Change last implemented level to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
pjasicek committed Jun 10, 2018
1 parent ff64a04 commit ad9206f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenClaw/Engine/GameApp/BaseGameLogic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,8 +488,8 @@ bool BaseGameLogic::VLoadScoreScreen(const char* xmlScoreScreenResource)
int finishedLevelNumber = m_pCurrentLevel->GetLevelNumber();
int nextLevelNumber = m_pCurrentLevel->GetLevelNumber() + 1;

// Level 6 is the last implemented level
if (nextLevelNumber <= 6)
// Level 10 is the last implemented level
if (nextLevelNumber <= 10)
{
m_pGameSaveMgr->AddCheckpointSave(nextLevelNumber, nextLevelCheckpoint);

Expand Down

0 comments on commit ad9206f

Please sign in to comment.