From b26f27d9e3fd44ec5775accdc3666a339684be4c Mon Sep 17 00:00:00 2001 From: Fox Caminiti Date: Mon, 1 Aug 2022 20:03:12 -0400 Subject: large changes to bitmap structure --- memory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'memory.cpp') diff --git a/memory.cpp b/memory.cpp index 73d1fb4..6aebdc3 100644 --- a/memory.cpp +++ b/memory.cpp @@ -1,4 +1,4 @@ -internal void +static void InitMemoryTable(global_memory *GlobalMemory, memory *Memory, uint64 Size, memory_table_list TableName, char *Name) { memory_table *Table = &Memory->Slot[TableName]; Table->Name = Name; @@ -7,7 +7,7 @@ InitMemoryTable(global_memory *GlobalMemory, memory *Memory, uint64 Size, memory GlobalMemory->CurrentPosition += Size; } -internal void* +static void* AllocateMemory(memory *Memory, uint64 Size, memory_table_list TableName) { void *Address; memory_table *Table = &Memory->Slot[TableName]; -- cgit v1.2.3