Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5339 → Rev 5340

/programs/games/LaserTank/trunk/LaserTank.cpp
992,7 → 992,7
case MODE_PAUSE:
if (key == 27)
SetMode(MODE_LEVELS);
else
if ((key == 32 || key == 13) && (gameStatus == GAME_NONE || (gameStatus == GAME_VICTORY && levelIndex < (levelCount - 1))))
{
if (gameStatus == GAME_VICTORY)
999,8 → 999,8
openLevel(levelIndex + 1);
SetMode(MODE_GAME);
}
else
if (key == 114)
 
if (key == 114 || (gameStatus == GAME_DEFEAT && (key == 32 || key == 13)))
{
openLevel(levelIndex);
SetMode(MODE_GAME);