Skip to content
Snippets Groups Projects
Commit 30e48fd5 authored by bitten2up's avatar bitten2up Committed by sphere
Browse files

I_SetSongTrack(int) should be I_SetSongTrack(INT32)

parent f644877b
Branches
Tags
1 merge request!2213I_SetSongTrack(int) should be I_SetSongTrack(INT32)
...@@ -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.
Please register or to comment