Fixed a sound bugg and added a new load bar.

This commit is contained in:
Ziver Koc 2007-04-30 15:17:15 +00:00
parent 88fcd15266
commit 7aa445f694
8 changed files with 11 additions and 12 deletions

View file

@ -279,4 +279,10 @@ public class SoundManager {
}
return instance;
}
public void clear(){
for(int i=0; i<sources.size() ;i++){
stopSound(i);
}
}
}