- debug state

- new fail message from pull/58
This commit is contained in:
Anonymous-275
2023-08-04 20:57:52 +01:00
parent a504114809
commit f1d960d062
5 changed files with 38 additions and 19 deletions

View File

@@ -79,6 +79,7 @@ class Launcher {
fs::path LauncherCache{"Resources"};
int64_t DiscordTime{};
bool LoginAuth = false;
bool DebugMode = false;
fs::path CurrentPath{};
std::string BeamRoot{};
std::string UserRole{};

View File

@@ -14,7 +14,8 @@ class Memory {
static uint32_t GetLauncherPID(const std::set<uint32_t>& BL);
static uint64_t GetModuleBase(const char* Name);
static void Print(const std::string& msg);
static std::string GetHex(uint64_t num);
static std::string GetHex(uint64_t num);
static inline bool DebugMode = false;
static void Inject(uint32_t PID);
static uint32_t GetTickCount();
static uint32_t EntryPoint();