removed debug code

This commit is contained in:
georgemoralis 2023-08-03 13:06:23 +03:00
parent 7b7a659ba9
commit a135981fdd
1 changed files with 3 additions and 3 deletions

View File

@ -34,14 +34,14 @@
// Main code // Main code
int main(int argc, char* argv[]) int main(int argc, char* argv[])
{ {
/* if (argc == 1) { if (argc == 1) {
printf("Usage: %s <elf or eboot.bin path>\n", argv[0]); printf("Usage: %s <elf or eboot.bin path>\n", argv[0]);
return -1; return -1;
}*/ }
logging::init(true); // init logging logging::init(true); // init logging
Lib::InitThreads(); Lib::InitThreads();
const char* const path = "videoout_basic.elf"; // argv[1]; //argument 1 is the path of self file to boot const char* const path = argv[1]; //argument 1 is the path of self file to boot
// const char* const path = "F:\\ps4games\\CUSA03840 - Resident Evil 6\\eboot.bin"; // const char* const path = "F:\\ps4games\\CUSA03840 - Resident Evil 6\\eboot.bin";
auto* linker = Singleton<Linker>::Instance(); auto* linker = Singleton<Linker>::Instance();