This repository has been archived on 2024-10-12 . You can view files and clone it, but cannot push or open issues or pull requests.
9 lines
180 B
C#
9 lines
180 B
C#
namespace Ryujinx.Ui.Common.Configuration
|
|||
{
|
|||
public enum ConfigurationLoadResult
|
|||
{
|
|||
Success = 0,
|
|||
NotLoaded = 1,
|
|||
MigratedFromPreVulkan = 1 << 8
|
|||
}
|
|||
}
|