1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Added ability to rename namespaces

This commit is contained in:
Brian Fiete 2020-05-31 07:12:17 -07:00
parent 91e0d10128
commit 014263c3a7
16 changed files with 373 additions and 78 deletions

View file

@ -1451,14 +1451,13 @@ BF_EXPORT void BF_CALLTYPE Debugger_ReadMemory(uintptr address, uintptr size, un
{
if (gDebugger == NULL)
return;
//CDH TODO internally clamps to 32-bit here, need to make this more obvious in IDE memory panel etc.
gDebugger->ReadMemory(address, size, data);
}
BF_EXPORT void BF_CALLTYPE Debugger_WriteMemory(uintptr address, uintptr size, unsigned char* data)
{
//CDH TODO internally clamps to 32-bit here, need to make this more obvious in IDE memory panel etc.
if (gDebugger == NULL)
return;
gDebugger->WriteMemory(address, data, size);
}