Skip to content
Snippets Groups Projects
Select Git revision
  • gitlab-ci_timeout
  • next default protected
  • master protected
  • unfuck-icon-mac
  • rr-item-cruncher
  • http-ms-startup-print
  • better-bans
  • http-ms-rules
  • chat-flood-fix
  • prevent-permissions-footgun
  • ms-address-warning
  • uncapped-master
  • uncapped-hud
  • spectator-little-things
  • no-turn-easing-v1
  • master-server-is-a-bad-name
  • findfile-with-threads
  • fix-nocurl
  • spinout-changes
  • itemodds-fallthrough-fix
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • V1.0.0
31 results

i_cdmus.c

Blame
  • Alam Ed Arias's avatar
    Alam Ed Arias authored and Alam Arias committed
    b93cb1b6
    History
    i_cdmus.c 608 B
    #include "../command.h"
    #include "../s_sound.h"
    #include "../i_sound.h"
    
    //
    // CD MUSIC I/O
    //
    
    UINT8 cdaudio_started = 0;
    
    consvar_t cd_volume = {"cd_volume","31",CV_SAVE,soundvolume_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL};
    consvar_t cdUpdate  = {"cd_update","1",CV_SAVE, NULL, NULL, 0, NULL, NULL, 0, 0, NULL};
    
    
    void I_InitCD(void){}
    
    void I_StopCD(void){}
    
    void I_PauseCD(void){}
    
    void I_ResumeCD(void){}
    
    void I_ShutdownCD(void){}
    
    void I_UpdateCD(void){}
    
    void I_PlayCD(UINT8 track, UINT8 looping)
    {
    	(void)track;
    	(void)looping;
    }
    
    boolean I_SetVolumeCD(int volume)
    {
    	(void)volume;
    	return false;
    }