mirror of
https://github.com/opentx/opentx.git
synced 2025-07-19 14:25:11 +03:00
Fix stack alignment
29+1 is not dividable with 4, the same for 50.
This commit is contained in:
parent
673c8aac1a
commit
13bd51d514
1 changed files with 2 additions and 2 deletions
|
@ -83,8 +83,8 @@ public:
|
|||
typedef BinAllocator<39,300> BinAllocator_slots1;
|
||||
typedef BinAllocator<79,100> BinAllocator_slots2;
|
||||
#else
|
||||
typedef BinAllocator<29,200> BinAllocator_slots1;
|
||||
typedef BinAllocator<91,50> BinAllocator_slots2;
|
||||
typedef BinAllocator<39,200> BinAllocator_slots1;
|
||||
typedef BinAllocator<91,64> BinAllocator_slots2;
|
||||
#endif
|
||||
|
||||
#if defined(USE_BIN_ALLOCATOR)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue