mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 20:31:30 +00:00
merge sdl interface changes into SDL2 interface
This commit is contained in:
parent
f3bd8c6ef4
commit
0f8269fe6f
2 changed files with 3 additions and 3 deletions
|
@ -1214,7 +1214,7 @@
|
||||||
C01FCF4B08A954540054247B /* Debug */ = {
|
C01FCF4B08A954540054247B /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
CURRENT_PROJECT_VERSION = 2.1.6;
|
CURRENT_PROJECT_VERSION = 2.1.8;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
NORMALSRB2,
|
NORMALSRB2,
|
||||||
|
@ -1226,7 +1226,7 @@
|
||||||
C01FCF4C08A954540054247B /* Release */ = {
|
C01FCF4C08A954540054247B /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
CURRENT_PROJECT_VERSION = 2.1.6;
|
CURRENT_PROJECT_VERSION = 2.1.8;
|
||||||
GCC_ENABLE_FIX_AND_CONTINUE = NO;
|
GCC_ENABLE_FIX_AND_CONTINUE = NO;
|
||||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
|
|
|
@ -152,7 +152,7 @@ static Mix_Chunk *ds2chunk(void *stream)
|
||||||
if (!(frac & 0xFFFF)) // other solid multiples (change if FRACBITS != 16)
|
if (!(frac & 0xFFFF)) // other solid multiples (change if FRACBITS != 16)
|
||||||
newsamples = samples * (frac >> FRACBITS);
|
newsamples = samples * (frac >> FRACBITS);
|
||||||
else // strange and unusual fractional frequency steps, plus anything higher than 44100hz.
|
else // strange and unusual fractional frequency steps, plus anything higher than 44100hz.
|
||||||
newsamples = FixedMul(frac, samples) + 1; // add 1 sample for security! the code below rounds up.
|
newsamples = FixedMul(FixedDiv(samples, freq), 44100) + 1; // add 1 to counter truncation.
|
||||||
if (newsamples >= UINT32_MAX>>2)
|
if (newsamples >= UINT32_MAX>>2)
|
||||||
return NULL; // would and/or did wrap, can't store.
|
return NULL; // would and/or did wrap, can't store.
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue