Cheats.h 418 B

1234567891011121314
  1. // Copyright 2021 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. namespace Cheats
  5. {
  6. constexpr int TRY_SET_FAIL_CODE_MIXED_ENCRYPTION = -3;
  7. constexpr int TRY_SET_FAIL_NO_CODE_LINES = -2;
  8. constexpr int TRY_SET_FAIL_NO_NAME = -1;
  9. constexpr int TRY_SET_SUCCESS = 0;
  10. // Result codes greater than 0 represent an error on the corresponding code line (one-indexed)
  11. } // namespace Cheats