[wpdev-commits] wolfpack basechar.cpp,1.143,1.144
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-04 15:25:52
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22372 Modified Files: basechar.cpp Log Message: no idea what this was. Index: basechar.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/basechar.cpp,v retrieving revision 1.143 retrieving revision 1.144 diff -C2 -d -r1.143 -r1.144 *** basechar.cpp 4 Sep 2004 08:36:20 -0000 1.143 --- basechar.cpp 4 Sep 2004 15:25:40 -0000 1.144 *************** *** 2421,2430 **** unsigned short sound; ! if ( amount == 1 ) sound = 0x35; else if ( amount > 1 && amount < 6 ) sound = 0x36; else ! sound = 0x37; soundEffect( sound, hearall ); --- 2421,2436 ---- unsigned short sound; ! /*if ( amount == 1 ) sound = 0x35; else if ( amount > 1 && amount < 6 ) sound = 0x36; else ! sound = 0x37;*/ ! if (amount <= 1) ! sound = 0x2e4; ! else if (amount <= 5) ! sound = 0x2e5; ! else ! sound = 0x2e6; soundEffect( sound, hearall ); |