diff options
author | Chris Robinson <[email protected]> | 2022-12-13 06:41:01 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-12-13 06:41:01 -0800 |
commit | 7c3f201f2625e37807c608e718b190cc48107b9c (patch) | |
tree | 3b1ad37bf90e49836ebaa1fc6768c11b1e8be249 /alc/alu.cpp | |
parent | b0be3bf883c147a87840b880a6b0a8db36333b6a (diff) |
Implement an al::unreachable wrapper/helper
Diffstat (limited to 'alc/alu.cpp')
-rw-r--r-- | alc/alu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alu.cpp b/alc/alu.cpp index dc5ed122..fdb51f78 100644 --- a/alc/alu.cpp +++ b/alc/alu.cpp @@ -1714,7 +1714,7 @@ void SendSourceStateEvent(ContextBase *context, uint id, VChangeState state) break; /* Shouldn't happen. */ case VChangeState::Restart: - ASSUME(0); + al::unreachable(); } ring->writeAdvance(1); |