Removed Big Boss. (Just doesn't feel like it fits.)

This commit is contained in:
onpon4 2015-02-26 21:39:11 -05:00
parent 182ea70ba1
commit 4319051fd0
3 changed files with 3 additions and 9 deletions

Binary file not shown.

View File

@ -7,9 +7,6 @@ through_space.ogg
http://opengameart.org/content/railjet-qubodup-short-cut-loop http://opengameart.org/content/railjet-qubodup-short-cut-loop
railjet_short.ogg railjet_short.ogg
http://opengameart.org/content/big-boss
big_boss.ogg
http://opengameart.org/content/grey-sector-8-bit http://opengameart.org/content/grey-sector-8-bit
grey_sector.ogg grey_sector.ogg

View File

@ -104,22 +104,19 @@ void playRandomTrack()
int tracks = 0; int tracks = 0;
char track[][64] = { char track[][64] = {
"music/railjet_short.ogg", "music/big_boss.ogg", "music/railjet_short.ogg", "music/railjet_short.ogg", "music/grey_sector.ogg",
"music/grey_sector.ogg", "music/big_boss.ogg",
"music/space_dimensions.ogg", "music/frozen_jam.ogg" "music/space_dimensions.ogg", "music/frozen_jam.ogg"
}; };
switch(currentGame.system) switch(currentGame.system)
{ {
case 0: case 0:
tracks = 3;
break;
case 1: case 1:
tracks = 5; tracks = 2;
break; break;
case 2: case 2:
case 3: case 3:
tracks = 7; tracks = 4;
break; break;
} }