[Super-tux-commit] supertux/src player.cpp,1.190,1.191
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-10-30 11:23:43
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10657/src Modified Files: player.cpp Log Message: Switched left and right dust as asked by Marek. Index: player.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v retrieving revision 1.190 retrieving revision 1.191 diff -u -d -r1.190 -r1.191 --- player.cpp 29 Oct 2004 22:50:30 -0000 1.190 +++ player.cpp 30 Oct 2004 11:23:34 -0000 1.191 @@ -497,8 +497,8 @@ SoundManager::get()->play_sound(IDToSound(SND_SKID)); // dust some partcles Sector::current()->add_particles( - Vector(base.x + (dir == LEFT ? base.width : 0), base.y+base.height), - dir == LEFT ? 270+20 : 90-40, dir == LEFT ? 270+40 : 90-20, + Vector(base.x + (dir == RIGHT ? base.width : 0), base.y+base.height), + dir == RIGHT ? 270+20 : 90-40, dir == RIGHT ? 270+40 : 90-20, Vector(2.8,-2.6), Vector(0,0.030), 3, Color(100,100,100), 3, 800); ax *= 2.5; |