13
0

Fix 32bit compilation

This commit is contained in:
Robin Gareus 2017-02-18 16:22:34 +01:00
parent 92e203a19e
commit 29ca1f7a67

View File

@ -770,7 +770,7 @@ PTFFormat::parsemidi(void) {
// stop gap measure to prevent crashes in ardour, // stop gap measure to prevent crashes in ardour,
// remove when decryption is fully solved for .ptx // remove when decryption is fully solved for .ptx
if ((m.velocity & 0x80) || (m.note & 0x80) || if ((m.velocity & 0x80) || (m.note & 0x80) ||
(m.pos & 0xff00000000) || (m.length & 0xff00000000)) { (m.pos & 0xff00000000LL) || (m.length & 0xff00000000LL)) {
continue; continue;
} }
#endif #endif