diff options
author | Chris Robinson <[email protected]> | 2011-06-15 01:59:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-06-15 01:59:07 -0700 |
commit | 14d6ab384d631a397c8e54c5a4dd24a1544324ed (patch) | |
tree | f33b04cb80950c2047841fd1dba320967e6a5d83 /OpenAL32/Include | |
parent | 62036745f330ac1a9bbca52e8bf87d4549b5b31d (diff) |
Use a flag to specify when a device is running
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 2e06f7bd..b304d63d 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -480,6 +480,8 @@ struct ALCdevice_struct // Channel configuration was requested by the config file #define DEVICE_CHANNELS_REQUEST (1<<3) +// Specifies if the device is currently running +#define DEVICE_RUNNING (1<<31) struct ALCcontext_struct { |