mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-05 07:45:08 +01:00
7 lines
320 B
C++
7 lines
320 B
C++
#include "RelocationData.h"
|
|
#include "utils/StringTools.h"
|
|
|
|
std::string RelocationData::toString() const {
|
|
return StringTools::strfmt("%s destination: %08X offset: %08X type: %02X addend: %d rplName: %s isData: %d \n", name.c_str(), destination, offset, type, addend, rplInfo.getName().c_str(), rplInfo.isData());
|
|
}
|