hexen: Make S_StartSongName songLump parameter const
This commit is contained in:
parent
96721fe80d
commit
5ee47d86d9
2 changed files with 2 additions and 2 deletions
|
|
@ -241,7 +241,7 @@ int S_GetCurrentCDTrack(void)
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
void S_StartSongName(char *songLump, boolean loop)
|
||||
void S_StartSongName(const char *songLump, boolean loop)
|
||||
{
|
||||
int lumpnum;
|
||||
int cdTrack;
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ void S_PauseSound(void);
|
|||
void S_ResumeSound(void);
|
||||
void S_UpdateSounds(mobj_t * listener);
|
||||
void S_StartSong(int song, boolean loop);
|
||||
void S_StartSongName(char *songLump, boolean loop);
|
||||
void S_StartSongName(const char *songLump, boolean loop);
|
||||
void S_Init(void);
|
||||
void S_GetChannelInfo(SoundInfo_t * s);
|
||||
void S_SetMusicVolume(void);
|
||||
|
|
|
|||
Loading…
Reference in a new issue