More Ez2dancer Theme - Almost done Style Select.

Cleaned up Turtle Noteskin a bit.
This commit is contained in:
Andrew Livy
2003-06-11 19:40:47 +00:00
parent b20191ffee
commit 978a7ae3cc
6 changed files with 98 additions and 12 deletions
+10 -2
View File
@@ -49,6 +49,7 @@ MusicBannerWheel::MusicBannerWheel()
scrlistPos=0;
SongsExist=0;
SingleLoad=0;
bScanning = false;
if(DEFAULT_SCROLL_DIRECTION && GAMESTATE->m_pCurSong == NULL) /* check the song is null... incase they have just come back from a song and changed their PlayerOptions */
{
@@ -179,10 +180,17 @@ void MusicBannerWheel::InsertNewBanner(int direction)
{
ASSERT(0); // we should be going in some sort of direction.
}
if(PREVIEWMUSICMODE == 0 || PREVIEWMUSICMODE == 3)
if((PREVIEWMUSICMODE == 0 || PREVIEWMUSICMODE == 3) && !bScanning)
PlayMusicSample();
}
void MusicBannerWheel::SetScanMode(bool Scanmode)
{
bScanning = Scanmode;
if((PREVIEWMUSICMODE == 0 || PREVIEWMUSICMODE == 3) && !Scanmode)
PlayMusicSample();
}
/****************************
void MusicBannerWheel::LoadSongData()
@@ -270,7 +278,7 @@ void MusicBannerWheel::LoadSongData()
m_ScrollingList.Load( asGraphicPaths );
if(SingleLoad == 2)
SingleLoad = 1;
if(PREVIEWMUSICMODE == 0 || PREVIEWMUSICMODE == 3)
if((PREVIEWMUSICMODE == 0 || PREVIEWMUSICMODE == 3) && !bScanning)
PlayMusicSample();
}