mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
Fix typo for ARM MIDI ringbuffer alignment
This commit is contained in:
parent
e5c19994c9
commit
b8c3f9342a
1 changed files with 1 additions and 1 deletions
|
|
@ -383,7 +383,7 @@ RTMidiBuffer::alloc_blob (uint32_t size)
|
|||
}
|
||||
|
||||
uint32_t offset = _pool_size;
|
||||
#if defined(__arm__) || defined(__aarch64_)
|
||||
#if defined(__arm__) || defined(__aarch64__)
|
||||
_pool_size += ((size - 1) | 3) + 1;
|
||||
#else
|
||||
_pool_size += size;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue