// Token: 0x06000EED RID: 3821 RVA: 0x00084080 File Offset: 0x00082280
 private static void DmSoundStopStageBGM(int fade_frame)
 {
     if (AppMain.dm_sound_bgm_scb != null)
     {
         GsSound.StopBgm(AppMain.dm_sound_bgm_scb, fade_frame);
     }
 }
 // Token: 0x06000EE8 RID: 3816 RVA: 0x00083FB4 File Offset: 0x000821B4
 private static void DmSoundExit()
 {
     GsSound.Halt();
     GsSound.End();
     if (AppMain.dm_sound_jingle_scb != null)
     {
         GsSound.StopBgm(AppMain.dm_sound_jingle_scb, 0);
         GsSound.ResignScb(AppMain.dm_sound_jingle_scb);
         AppMain.dm_sound_jingle_scb = null;
     }
     if (AppMain.dm_sound_bgm_scb != null)
     {
         GsSound.StopBgm(AppMain.dm_sound_bgm_scb, 0);
         GsSound.ResignScb(AppMain.dm_sound_bgm_scb);
         AppMain.dm_sound_bgm_scb = null;
     }
     GsSound.Reset();
 }
 // Token: 0x06000EF1 RID: 3825 RVA: 0x000840F0 File Offset: 0x000822F0
 private static void DmSoundStopJingle(int fade_frame)
 {
     GsSound.StopBgm(AppMain.dm_sound_jingle_scb, fade_frame);
 }
 // Token: 0x06000EF0 RID: 3824 RVA: 0x000840BC File Offset: 0x000822BC
 private static void DmSoundPlayJingle(int jngl_idx, int fade_frame)
 {
     GsSound.StopBgm(AppMain.dm_sound_jingle_scb);
     GsSound.PlayBgm(AppMain.dm_sound_jingle_scb, AppMain.dm_sound_jingle_name_list[jngl_idx], fade_frame);
     AppMain.dm_sound_jingle_scb.flag |= 2147483648U;
 }