mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Fix 32bit compilation
This commit is contained in:
parent
92e203a19e
commit
29ca1f7a67
1 changed files with 1 additions and 1 deletions
|
|
@ -770,7 +770,7 @@ PTFFormat::parsemidi(void) {
|
|||
// stop gap measure to prevent crashes in ardour,
|
||||
// remove when decryption is fully solved for .ptx
|
||||
if ((m.velocity & 0x80) || (m.note & 0x80) ||
|
||||
(m.pos & 0xff00000000) || (m.length & 0xff00000000)) {
|
||||
(m.pos & 0xff00000000LL) || (m.length & 0xff00000000LL)) {
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue