diff options
author | Chris Robinson <[email protected]> | 2023-01-13 16:58:29 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-01-13 16:58:29 -0800 |
commit | 5ef7bed3a4c064fe54850f419cb248cc2a406f55 (patch) | |
tree | bf708d0c6b776b0c86b94579832e167fe0ff829e /core | |
parent | cec6305901e6491b86dfc5d126d0e3520b43bfb9 (diff) |
Don't include the array definition with bin2h
Diffstat (limited to 'core')
-rw-r--r-- | core/hrtf.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/hrtf.cpp b/core/hrtf.cpp index 48b9a3d7..28179189 100644 --- a/core/hrtf.cpp +++ b/core/hrtf.cpp @@ -1206,7 +1206,9 @@ al::span<const char> GetResource(int /*name*/) #else -#include "hrtf_default.h" +constexpr unsigned char hrtf_default[]{ +#include "default_hrtf.txt" +}; al::span<const char> GetResource(int name) { |