mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-21 21:30:18 +00:00
12 lines
No EOL
207 B
C#
12 lines
No EOL
207 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ui.Common.Configuration
|
|
{
|
|
[Flags]
|
|
public enum ConfigurationLoadResult
|
|
{
|
|
Success = 0,
|
|
NotLoaded = 1,
|
|
MigratedFromPreVulkan = 1 << 8
|
|
}
|
|
} |