improved symbols_resolver and output

This commit is contained in:
georgemoralis 2024-03-25 09:46:36 +02:00
parent 540c21d382
commit f2f04142b0
2 changed files with 5 additions and 5 deletions

View file

@ -58,8 +58,9 @@ int main(int argc, char* argv[]) {
if (std::filesystem::exists(sce_module_folder)) {
for (const auto& entry : std::filesystem::directory_iterator(sce_module_folder)) {
if (entry.path().filename() == "libc.prx") {
// found = true;
found = true;
printf("%s\n", entry.path().string().c_str());
linker->LoadModule(entry.path().string().c_str());
}
}
}