diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2020-10-19 07:55:25 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2020-10-19 07:55:25 -0700 |
commit | cdc15a4783e61dd1a838f25dd668e19b28449b19 (patch) | |
tree | 57d47a584467c465d7d0ebe2a893f3f5b540ef08 /alc/bsinc_tables.h | |
parent | d6686bceb0d77d32cb496ef44f373a464ffd3fe3 (diff) |
Use constexpr variables in place of some macros
Diffstat (limited to 'alc/bsinc_tables.h')
-rw-r--r-- | alc/bsinc_tables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/bsinc_tables.h b/alc/bsinc_tables.h index 2e2443e5..8e37336d 100644 --- a/alc/bsinc_tables.h +++ b/alc/bsinc_tables.h @@ -6,8 +6,8 @@ struct BSincTable { float scaleBase, scaleRange; - unsigned int m[BSINC_SCALE_COUNT]; - unsigned int filterOffset[BSINC_SCALE_COUNT]; + unsigned int m[BSincScaleCount]; + unsigned int filterOffset[BSincScaleCount]; const float *Tab; }; |