[Super-tux-commit] supertux/src scene.cpp,1.25,1.26
Brought to you by:
wkendrick
From: Ingo R. <gr...@us...> - 2004-04-26 16:45:42
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21923 Modified Files: scene.cpp Log Message: - gcc -Wall warning fix Index: scene.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/scene.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- scene.cpp 26 Apr 2004 10:03:34 -0000 1.25 +++ scene.cpp 26 Apr 2004 16:45:33 -0000 1.26 @@ -27,8 +27,8 @@ : score(0), distros(0), lives(START_LIVES), - score_multiplier(1), - bonus(NO_BONUS) + bonus(NO_BONUS), + score_multiplier(1) { } @@ -42,6 +42,8 @@ return "growup"; case PlayerStatus::FLOWER_BONUS: return "icflower"; + default: + return "none"; } } |