ValveSoftware / steam-audio

Steam Audio
https://valvesoftware.github.io/steam-audio/
Apache License 2.0
2.2k stars 152 forks source link

Use IPLuint8 instead of uint8_t in phonon.h #315

Closed niansa closed 4 months ago

niansa commented 4 months ago

Follow-up to #308

uint8_t* is used in IPLHRTFSettings::sofaData which requires stdint.h to be included. This is unnecessary because there's already an unsigned 8 bit type defined: IPLuint8

This PR changes the use of uint8_t to IPLuint8*.