Fixed compiler warning

This commit is contained in:
Sam Lantinga 2019-06-18 14:24:24 -07:00
parent 99abcbb2bc
commit 14e8b93e37
2 changed files with 0 additions and 8 deletions

0
Xcode/SDL/SDL.xcodeproj/project.pbxproj Normal file → Executable file
View File

View File

@ -1340,11 +1340,7 @@ SDL_Convert_F32_to_S32_NEON(SDL_AudioCVT *cvt, SDL_AudioFormat format)
if (sample >= 1.0f) {
*dst = 2147483647;
} else if (sample <= -1.0f) {
#ifdef _MSC_VER /* !!! FIXME: bug in Visual Studio? */
*dst = (-2147483647) - 1;
#else
*dst = -2147483648;
#endif
} else {
*dst = ((Sint32)(sample * 8388607.0f)) << 8;
}
@ -1372,11 +1368,7 @@ SDL_Convert_F32_to_S32_NEON(SDL_AudioCVT *cvt, SDL_AudioFormat format)
if (sample >= 1.0f) {
*dst = 2147483647;
} else if (sample <= -1.0f) {
#ifdef _MSC_VER /* !!! FIXME: bug in Visual Studio? */
*dst = (-2147483647) - 1;
#else
*dst = -2147483648;
#endif
} else {
*dst = ((Sint32)(sample * 8388607.0f)) << 8;
}