mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 13:18:24 +00:00
audio_core/codec: Resolve truncation warnings within DecodeADPCM
The assignments here were performing an implicit truncation from int to s16. Make it explicit that this is desired behavior.
This commit is contained in:
parent
f322c51a63
commit
d354a2ee3b
1 changed files with 2 additions and 2 deletions
|
@ -72,8 +72,8 @@ StereoBuffer16 DecodeADPCM(const u8* const data, const std::size_t sample_count,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
state.yn1 = yn1;
|
state.yn1 = static_cast<s16>(yn1);
|
||||||
state.yn2 = yn2;
|
state.yn2 = static_cast<s16>(yn2);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue