mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-11-05 15:55:07 +01:00
7 lines
315 B
C++
7 lines
315 B
C++
#include "RelocationData.h"
|
|
#include "utils/StringTools.h"
|
|
|
|
std::string RelocationData::toString(){
|
|
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() );
|
|
}
|