start fixing mod download

This commit is contained in:
Lion Kortlepel
2022-06-28 03:20:26 +02:00
parent 25391fa0c7
commit 817bd4b588
3 changed files with 60 additions and 11 deletions

View File

@@ -135,8 +135,9 @@ std::string ThreadName(bool DebugModeOverride = false);
void RegisterThread(const std::string& str);
#define RegisterThreadAuto() RegisterThread(__func__)
#define KB 1024
#define MB (KB * 1024)
#define KB 1024llu
#define MB (KB * 1024llu)
#define GB (MB * 1024llu)
#define SSU_UNRAW SECRET_SENTRY_URL
#define _file_basename std::filesystem::path(__FILE__).filename().string()