projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ff837f
)
Draw bouncy coin above other objects
author
Ryan Flegel
<rflegel@gmail.com>
Mon, 24 Apr 2006 21:09:32 +0000
(21:09 +0000)
committer
Ryan Flegel
<rflegel@gmail.com>
Mon, 24 Apr 2006 21:09:32 +0000
(21:09 +0000)
SVN-Revision: 3418
src/object/gameobjs.cpp
patch
|
blob
|
history
diff --git
a/src/object/gameobjs.cpp
b/src/object/gameobjs.cpp
index
78adbbe
..
dff136d
100644
(file)
--- a/
src/object/gameobjs.cpp
+++ b/
src/object/gameobjs.cpp
@@
-61,7
+61,7
@@
BouncyCoin::update(float elapsed_time)
void
BouncyCoin::draw(DrawingContext& context)
{
- sprite->draw(context, position, LAYER_OBJECTS);
+ sprite->draw(context, position, LAYER_OBJECTS
+ 5
);
}
//---------------------------------------------------------------------------