Remove anti piracy message

This commit is contained in:
illusion0001
2023-07-26 23:06:49 -05:00
parent 65672243b2
commit 2ab2a65ae1
3 changed files with 10 additions and 64 deletions

View File

@@ -224,14 +224,12 @@ class Emulator {
enum : uint64_t {
EmulatorFlagQuickstartShown = 1ULL << 0,
EmulatorFlagIsoWarningAcknowledged = 1ULL << 1,
EmulatorFlagIsoWarningSticky = 1ULL<<2,
EmulatorFlagIsoWarningSticky = 1ULL<<2,
};
static uint64_t GetPersistentEmulatorFlags();
static void SetPersistentEmulatorFlags(uint64_t new_flags);
static std::string CanonicalizeFileExtension(
const std::filesystem::path& path);
void CheckMountWarning(const std::filesystem::path& path);
static bool ExceptionCallbackThunk(Exception* ex, void* data);
bool ExceptionCallback(Exception* ex);