Common: DynamicHeapArray/FixedHeapArray

This commit is contained in:
Stenzek
2023-08-19 13:52:51 +10:00
parent 7b4cbe3007
commit a00a4391ca
7 changed files with 264 additions and 13 deletions

View File

@ -351,7 +351,7 @@ static HeapFIFOQueue<u8, DATA_FIFO_SIZE> s_data_fifo;
struct SectorBuffer
{
HeapArray<u8, RAW_SECTOR_OUTPUT_SIZE> data;
FixedHeapArray<u8, RAW_SECTOR_OUTPUT_SIZE> data;
u32 size;
};