mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 19:05:00 +00:00
improvements in sceKernelAllocateDirectMemory and function logging
This commit is contained in:
parent
c0c6024e2c
commit
818e0b7404
6 changed files with 52 additions and 10 deletions
|
@ -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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue