aboutsummaryrefslogtreecommitdiff
path: root/engines/adl/sound.cpp
AgeCommit message (Collapse)Author
2017-02-21ADL: Use 0-sample for speaker silenceWalter van Niftrik
This reduces popping noises
2017-01-15ADL: Fix Signed vs. Unsigned Compiler Warnings.D G Turner
This is a subtle issue associated with the Common::Frac usage. The frac_t type is signed (int32), but the symbols such as FRAC_ONE are defined by an enumeration which will default to unsigned int for members. Unsure if the common code needs changing, but other usages fix the warning by casting the enumeration values to frac_t so doing this for now.
2017-01-14ADL: Add Sound classWalter van Niftrik