mirror of
https://github.com/wiiu-env/WUMSLoader.git
synced 2024-10-31 21:35:07 +01:00
Minor formatting and logging cleanup
This commit is contained in:
parent
d6ace2f0ef
commit
575e9914f0
@ -181,7 +181,7 @@ extern "C" void doStart(int argc, char **argv) {
|
||||
}
|
||||
}
|
||||
|
||||
DEBUG_FUNCTION_LINE_VERBOSE("Relocations done\n");
|
||||
DEBUG_FUNCTION_LINE_VERBOSE("Call Relocations done hook\n");
|
||||
CallHook(loadedModules, WUMS_HOOK_RELOCATIONS_DONE);
|
||||
|
||||
for (auto &curModule: loadedModules) {
|
||||
|
@ -44,6 +44,7 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
}
|
||||
|
||||
DEBUG_FUNCTION_LINE("Setup relocator");
|
||||
SetupRelocator();
|
||||
|
||||
nn::act::Initialize();
|
||||
|
@ -29,8 +29,7 @@
|
||||
|
||||
struct FunctionSymbolDataComparator {
|
||||
bool operator()(const std::shared_ptr<FunctionSymbolData> &lhs,
|
||||
const std::shared_ptr<FunctionSymbolData>& rhs) const
|
||||
{
|
||||
const std::shared_ptr<FunctionSymbolData> &rhs) const {
|
||||
return (uint32_t) lhs->getAddress() < (uint32_t) rhs->getAddress();
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user