mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Added note of clarification on enum AgiSoundType's different values.
svn-id: r28684
This commit is contained in:
+6
-2
@@ -209,9 +209,13 @@ struct IIgsChannelInfo {
|
||||
bool end; ///< Has the playing ended?
|
||||
};
|
||||
|
||||
/**
|
||||
* AGI sound resource types.
|
||||
* It's probably coincidence that all the values here are powers of two
|
||||
* as they're simply the different used values in AGI sound resources'
|
||||
* starts (The first 16-bit little endian word, to be precise).
|
||||
*/
|
||||
enum AgiSoundType {
|
||||
// FIXME: Fingolfin wonders: Why are bitmasks used here, when those
|
||||
// types seem to be mutually exclusive?
|
||||
AGI_SOUND_SAMPLE = 0x0001,
|
||||
AGI_SOUND_MIDI = 0x0002,
|
||||
AGI_SOUND_4CHN = 0x0008
|
||||
|
||||
Reference in New Issue
Block a user