Correct a potential overflow for CC names
A previous change put the opcode parameters as uint16
This commit is contained in:
parent
1af782109f
commit
930bfdfefe
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ namespace sfz
|
|||
{
|
||||
|
||||
using SfzCCArray = std::array<uint8_t, config::numCCs>;
|
||||
using CCNamePair = std::pair<uint8_t, std::string>;
|
||||
using CCNamePair = std::pair<uint16_t, std::string>;
|
||||
|
||||
template<class ValueType>
|
||||
struct CCValuePair {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue