ENUM

EmulatorCompatibility

Describes the levels of compatibility an emulator has with a given game.

  • enum EmulatorCompatibility {
  • # This game is not supported by this emulator.
  • UNSUPPORTED
  • # The system files required to run this game are not available.
  • MISSING_SYSTEM_FILES
  • # The game has the files required to be run, but they are not in the correct
  • # format. Validation should be run before launching this game.
  • REQUIRES_VALIDATION
  • # This game is supported and ready to be run, requiring no validation.
  • READY
  • }