diff options
Diffstat (limited to 'alc/voice.h')
-rw-r--r-- | alc/voice.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/alc/voice.h b/alc/voice.h index 88e15c2e..eb89d932 100644 --- a/alc/voice.h +++ b/alc/voice.h @@ -192,9 +192,10 @@ struct ALvoiceProps : public ALvoicePropsBase { struct ALvoice { enum State { - Stopped = 0, - Playing = 1, - Stopping = 2 + Stopped, + Playing, + Stopping, + Pending }; std::atomic<ALvoiceProps*> mUpdate{nullptr}; |