Advertisement
Sandsky0

Untitled

Jan 17th, 2014
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. switch(room) {
  2. case rIntro:
  3. case rTitle:
  4. case rChangeControls:
  5. if global.filePlaying != 1 {
  6. SS_StopSound(global.curMusic);
  7. global.filePlaying = 1;
  8. global.curMusic = global.TitleScreen;
  9. SS_LoopSound(global.curMusic)
  10. }
  11. break;
  12. case rChoko:
  13. if global.filePlaying != 2 {
  14. SS_StopSound(global.curMusic);
  15. global.filePlaying = 2;
  16. global.curMusic = global.Stage1Music;
  17. SS_LoopSound(global.curMusic)
  18. }
  19. break;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement