Data.setBigBlocksDt2 C# (CSharp) Méthode

setBigBlocksDt2() public méthode

public setBigBlocksDt2 ( int bigTileIndex, BigBlock bigBlocks ) : void
bigTileIndex int
bigBlocks BigBlock
Résultat void
    public void setBigBlocksDt2(int bigTileIndex, BigBlock[] bigBlocks)
    {
        int[] addrPointers = getBigBlocksPtrsForLevel(bigTileIndex);
        int blocksCount = getBigBlocksCountForLevel(bigTileIndex);
        var data = Utils.linearizeBigBlocks(bigBlocks);
        Utils.writeDataToUnalignedArrays(data, Globals.romdata, addrPointers[0], addrPointers[1], addrPointers[2], addrPointers[3], blocksCount);
    }
Data