mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
fix check for order max in PresentationInfo::parse (string&)
This commit is contained in:
parent
38dde7f818
commit
14fb1367a2
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ PresentationInfo::parse (string const& str)
|
|||
int
|
||||
PresentationInfo::parse (uint32_t n, Flag f)
|
||||
{
|
||||
if (n < UINT16_MAX) {
|
||||
if (n < UINT32_MAX) {
|
||||
assert (f != Flag (0));
|
||||
_order = n;
|
||||
_flags = Flag (f|GroupOrderSet);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue