From 50b74629ddcbc7c8adf38ff5a02c3ee5162789a1 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 15 Jan 2014 16:44:12 -0800 Subject: Add a flag to specify the device being paused Used to prevent UpdateDeviceParams from restarting the device, if a new context is created while paused. --- OpenAL32/Include/alMain.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenAL32') diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 987254fc..3394eab2 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -657,6 +657,9 @@ struct ALCdevice_struct // Stereo sources cover 120-degree angles around +/-90 #define DEVICE_WIDE_STEREO (1<<16) +// Specifies if the DSP is paused at user request +#define DEVICE_PAUSED (1<<30) + // Specifies if the device is currently running #define DEVICE_RUNNING (1<<31) -- cgit v1.2.3