MP3 SPI bus transfer question

switch(key) {
case 144: MP3player.playTrack(1); break;  <<< when the code hits this break, it goes to the }; at the end of the switch(){...} and continues
//disable interrupts to avoid collisions on the SPI bus between this code //and the MP3player library
MP3player.pauseDataStream();
colorWipe(Color(0, 0, 0), 500);
colorWipe(Color(10, 10, 10), 20);
colorWipe(Color(50, 50, 50), 10);
colorWipe(Color(100, 100, 100), 20);
colorWipe(Color(150, 150, 150), 10);
colorWipe(Color(200, 200, 200), 10);
colorWipe(Color(255, 255, 255), 20);
colorWipe(Color(100, 100, 100), 20);
colorWipe(Color(10, 10, 10), 10);
colorWipe(Color(0, 0, 0), 10);
//enable interrupts
MP3player.resumeDataStream();
case 145: MP3player.playTrack(2); break;