mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-30 20:33:43 +01:00
Make GMP independent of file, cleanup unused functions.
This commit is contained in:
parent
c53f29c257
commit
943207cae8
14 changed files with 108 additions and 158 deletions
|
|
@ -15,10 +15,10 @@ namespace Penumbra.Meta.Files;
|
|||
/// </summary>
|
||||
public unsafe class ExpandedEqpGmpBase : MetaBaseFile
|
||||
{
|
||||
protected const int BlockSize = 160;
|
||||
protected const int NumBlocks = 64;
|
||||
protected const int EntrySize = 8;
|
||||
protected const int MaxSize = BlockSize * NumBlocks * EntrySize;
|
||||
public const int BlockSize = 160;
|
||||
public const int NumBlocks = 64;
|
||||
public const int EntrySize = 8;
|
||||
public const int MaxSize = BlockSize * NumBlocks * EntrySize;
|
||||
|
||||
public const int Count = BlockSize * NumBlocks;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue