1
0
Fork 0
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:
Risto 2021-05-28 15:42:03 +02:00 committed by GitHub
parent 673c8aac1a
commit 13bd51d514
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)