SFML / CSFML

Official binding of SFML for C
https://www.sfml-dev.org
Other
347 stars 124 forks source link

Missing methods on SoundBufferRecorder. #83

Closed SpaceManiac closed 9 years ago

SpaceManiac commented 9 years ago

These functions on SoundRecorder are not available on SoundBufferRecorder:

void sfSoundRecorder_setProcessingInterval(sfSoundRecorder* soundRecorder, sfTime interval);
sfBool sfSoundRecorder_setDevice(sfSoundRecorder* soundRecorder, const char* name);
const char* sfSoundRecorder_getDevice(sfSoundRecorder* soundRecorder);

It seems like at least setDevice and getDevice variants should be available.

LaurentGomila commented 9 years ago

That's right. When something is added to a base class, it must also be duplicated in all the derived classes in CSFML.

zsbzsb commented 9 years ago

Superseded by #90