fixed #716: don't convert effect volume to int

This commit is contained in:
minggo 2011-09-13 14:10:32 +08:00
parent e2315d92b5
commit 8fbe6dcb3f
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ namespace CocosDenshion
float SimpleAudioEngine::getEffectsVolume()
{
return (int)static_getEffectsVolume();
return static_getEffectsVolume();
}
void SimpleAudioEngine::setEffectsVolume(float volume)