mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Do not mess with the order of the old TSampleFormat enum
This commit is contained in:
parent
5e91775576
commit
9821db2b21
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ namespace NLSOUND
|
|||
/*
|
||||
* Sound sample format
|
||||
*/
|
||||
enum TSampleFormat { SampleFormatUnknown, Mono8, Mono16ADPCM, Mono16, Stereo8, Stereo16 };
|
||||
enum TSampleFormat { Mono8, Mono16ADPCM, Mono16, Stereo8, Stereo16, SampleFormatUnknown = (~0) };
|
||||
|
||||
/**
|
||||
* Abstract sound driver (implemented in sound driver dynamic library)
|
||||
|
|
Loading…
Reference in a new issue