mirror of
https://github.com/libretro/Play-.git
synced 2025-02-26 06:25:30 +00:00
16 lines
370 B
C++
16 lines
370 B
C++
#include "Iop_Module.h"
|
|
#include "string_format.h"
|
|
|
|
using namespace Iop;
|
|
|
|
std::string CModule::PrintStringParameter(const uint8* ram, uint32 stringPtr)
|
|
{
|
|
auto result = string_format("0x%08X", stringPtr);
|
|
if(stringPtr != 0)
|
|
{
|
|
auto string = reinterpret_cast<const char*>(ram + stringPtr);
|
|
result += string_format(" ('%s')", string);
|
|
}
|
|
return std::move(result);
|
|
}
|