mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-24 11:36:22 +00:00
LASTEXPRESS: Move SoundStatus to shared header
This commit is contained in:
parent
9cc5d404c7
commit
4526bbb5b6
@ -89,6 +89,27 @@ enum SoundState {
|
||||
kSoundState2 = 2
|
||||
};
|
||||
|
||||
enum SoundStatus {
|
||||
kSoundStatus_20 = 0x20,
|
||||
kSoundStatus_40 = 0x40,
|
||||
kSoundStatus_180 = 0x180,
|
||||
kSoundStatusRemoved = 0x200,
|
||||
kSoundStatus_400 = 0x400,
|
||||
|
||||
kSoundStatus_8000 = 0x8000,
|
||||
kSoundStatus_20000 = 0x20000,
|
||||
kSoundStatus_100000 = 0x100000,
|
||||
kSoundStatus_20000000 = 0x20000000,
|
||||
kSoundStatus_40000000 = 0x40000000,
|
||||
|
||||
kSoundStatusClear0 = 0x10,
|
||||
kSoundStatusClear1 = 0x1F,
|
||||
kSoundStatusClear2 = 0x80,
|
||||
kSoundStatusClear3 = 0x200,
|
||||
kSoundStatusClear4 = 0x800,
|
||||
kSoundStatusClearAll = 0xFFFFFFE0
|
||||
};
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
// Time values
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
@ -76,27 +76,6 @@ namespace LastExpress {
|
||||
class LastExpressEngine;
|
||||
class SubtitleEntry;
|
||||
|
||||
enum SoundStatus {
|
||||
kSoundStatus_20 = 0x20,
|
||||
kSoundStatus_40 = 0x40,
|
||||
kSoundStatus_180 = 0x180,
|
||||
kSoundStatusRemoved = 0x200,
|
||||
kSoundStatus_400 = 0x400,
|
||||
|
||||
kSoundStatus_8000 = 0x8000,
|
||||
kSoundStatus_20000 = 0x20000,
|
||||
kSoundStatus_100000 = 0x100000,
|
||||
kSoundStatus_20000000 = 0x20000000,
|
||||
kSoundStatus_40000000 = 0x40000000,
|
||||
|
||||
kSoundStatusClear0 = 0x10,
|
||||
kSoundStatusClear1 = 0x1F,
|
||||
kSoundStatusClear2 = 0x80,
|
||||
kSoundStatusClear3 = 0x200,
|
||||
kSoundStatusClear4 = 0x800,
|
||||
kSoundStatusClearAll = 0xFFFFFFE0
|
||||
};
|
||||
|
||||
union SoundStatusUnion {
|
||||
uint32 status;
|
||||
byte status1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user