Fix a bunch of warnings.

This commit is contained in:
Skyth
2024-10-27 18:48:09 +03:00
parent 882f371de4
commit 24d257d421
10 changed files with 30 additions and 23 deletions

View File

@@ -24,7 +24,7 @@ void* Memory::Reserve(size_t offset, size_t size)
return Alloc(offset, size, MEM_RESERVE);
}
SWA_API void* MmGetHostAddress(uint32_t ptr)
void* MmGetHostAddress(uint32_t ptr)
{
return g_memory.Translate(ptr);
}