removed debug code
This commit is contained in:
parent
7ef3fe608a
commit
27f6f6bfd6
|
@ -22,10 +22,10 @@
|
||||||
#include "emulator.h"
|
#include "emulator.h"
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
/* if (argc == 1) {
|
if (argc == 1) {
|
||||||
fmt::print("Usage: {} <elf or eboot.bin path>\n", argv[0]);
|
fmt::print("Usage: {} <elf or eboot.bin path>\n", argv[0]);
|
||||||
return -1;
|
return -1;
|
||||||
}*/
|
}
|
||||||
Config::load("config.toml");
|
Config::load("config.toml");
|
||||||
Common::Log::Init(true);
|
Common::Log::Init(true);
|
||||||
Core::Libraries::LibKernel::init_pthreads();
|
Core::Libraries::LibKernel::init_pthreads();
|
||||||
|
@ -35,8 +35,7 @@ int main(int argc, char* argv[]) {
|
||||||
HLE::Libs::Graphics::VideoOut::videoOutInit(width, height);
|
HLE::Libs::Graphics::VideoOut::videoOutInit(width, height);
|
||||||
|
|
||||||
// Argument 1 is the path of self file to boot
|
// Argument 1 is the path of self file to boot
|
||||||
// const char* const path = argv[1];
|
const char* const path = argv[1];
|
||||||
const char* const path = "C://ps4//games//CUSA11712//eboot.bin";
|
|
||||||
|
|
||||||
auto* mnt = Common::Singleton<Core::FileSys::MntPoints>::Instance();
|
auto* mnt = Common::Singleton<Core::FileSys::MntPoints>::Instance();
|
||||||
std::filesystem::path p = std::string(path);
|
std::filesystem::path p = std::string(path);
|
||||||
|
|
Loading…
Reference in New Issue