diff options
Diffstat (limited to 'core/hrtf.cpp')
-rw-r--r-- | core/hrtf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hrtf.cpp b/core/hrtf.cpp index dedd74a3..383d4340 100644 --- a/core/hrtf.cpp +++ b/core/hrtf.cpp @@ -405,7 +405,7 @@ std::unique_ptr<HrtfStore> CreateHrtfStore(uint rate, ushort irSize, auto delays_ = reinterpret_cast<ubyte2*>(base + offset); offset += sizeof(delays_[0])*irCount; - if(unlikely(offset != total)) + if(offset != total) throw std::runtime_error{"HrtfStore allocation size mismatch"}; /* Copy input data to storage. */ |