Fix ChannelFading return type and name

This commit is contained in:
Dmitry Marakasov 2015-08-31 18:07:57 +03:00
parent 7916195c15
commit 88b7733d2a
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ int Mixer::IsChannelPaused(int channel) const {
return Mix_Paused(channel); return Mix_Paused(channel);
} }
int Mixer::IsChannelFading(int which) const { Mix_Fading Mixer::GetChannelFading(int which) const {
return Mix_FadingChannel(which); return Mix_FadingChannel(which);
} }

View File

@ -360,7 +360,7 @@ public:
/// \see https://www.libsdl.org/projects/SDL_mixer/docs/SDL_mixer.html#SEC40 /// \see https://www.libsdl.org/projects/SDL_mixer/docs/SDL_mixer.html#SEC40
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
int IsChannelFading(int which) const; Mix_Fading GetChannelFading(int which) const;
// TODO: Groups // TODO: Groups
// TODO: Music // TODO: Music