Skip to content
Snippets Groups Projects
Commit 55fd958e authored by sphere's avatar sphere
Browse files

Merge branch 'i_setsongtrack-should-be-int32' into 'master'

I_SetSongTrack(int) should be I_SetSongTrack(INT32)

See merge request STJr/SRB2!2213
parents 0309535b 30e48fd5
No related branches found
No related tags found
No related merge requests found
...@@ -164,7 +164,7 @@ void I_SetMusicVolume(UINT8 volume) ...@@ -164,7 +164,7 @@ void I_SetMusicVolume(UINT8 volume)
(void)volume; (void)volume;
} }
boolean I_SetSongTrack(int track) boolean I_SetSongTrack(INT32 track)
{ {
(void)track; (void)track;
return false; return false;
......
...@@ -1441,7 +1441,7 @@ void I_SetMusicVolume(UINT8 volume) ...@@ -1441,7 +1441,7 @@ void I_SetMusicVolume(UINT8 volume)
Mix_VolumeMusic(get_real_volume(music_volume)); Mix_VolumeMusic(get_real_volume(music_volume));
} }
boolean I_SetSongTrack(int track) boolean I_SetSongTrack(INT32 track)
{ {
#ifdef HAVE_GME #ifdef HAVE_GME
// If the specified track is within the number of tracks playing, then change it // If the specified track is within the number of tracks playing, then change it
......
...@@ -1471,7 +1471,7 @@ void I_SetMusicVolume(UINT8 volume) ...@@ -1471,7 +1471,7 @@ void I_SetMusicVolume(UINT8 volume)
(void)volume; (void)volume;
} }
boolean I_SetSongTrack(int track) boolean I_SetSongTrack(INT32 track)
{ {
(void)track; (void)track;
return false; return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment