improvements in sceKernelAllocateDirectMemory and function logging

This commit is contained in:
georgemoralis 2023-07-27 17:56:57 +03:00
parent c0c6024e2c
commit 818e0b7404
6 changed files with 52 additions and 10 deletions

View file

@ -29,6 +29,15 @@
auto func = reinterpret_cast<u64>(function); \
sym->AddSymbol(sr, func); \
}
#define PRINT_FUNCTION_NAME() \
{ \
LOG_INFO_IF(true, "{}()\n", __func__); \
}
#define PRINT_DUMMY_FUNCTION_NAME() \
{ LOG_INFO_IF(true, "dummy {}()\n", __func__); }
namespace HLE::Libs {
void Init_HLE_Libs(SymbolsResolver* sym);
}