projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
daa29b0
)
- gcc -Wall warning fix
author
Ingo Ruhnke
<grumbel@gmx.de>
Mon, 26 Apr 2004 16:45:33 +0000
(16:45 +0000)
committer
Ingo Ruhnke
<grumbel@gmx.de>
Mon, 26 Apr 2004 16:45:33 +0000
(16:45 +0000)
SVN-Revision: 755
src/scene.cpp
patch
|
blob
|
history
diff --git
a/src/scene.cpp
b/src/scene.cpp
index
fccff6f
..
c75f02d
100644
(file)
--- a/
src/scene.cpp
+++ b/
src/scene.cpp
@@
-27,8
+27,8
@@
PlayerStatus::PlayerStatus()
: score(0),
distros(0),
lives(START_LIVES),
-
score_multiplier(1
),
-
bonus(NO_BONUS
)
+
bonus(NO_BONUS
),
+
score_multiplier(1
)
{
}
@@
-42,6
+42,8
@@
std::string bonus_to_string(PlayerStatus::BonusType b)
return "growup";
case PlayerStatus::FLOWER_BONUS:
return "icflower";
+ default:
+ return "none";
}
}