Config: Correct MulticoreSched casing (#588)
This commit is contained in:
parent
b5fcf883e8
commit
f8a9faa1b9
1 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ namespace Ryujinx
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enables or disables multi-core scheduling of threads
|
/// Enables or disables multi-core scheduling of threads
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool EnableMultiCoreScheduling { get; private set; }
|
public bool EnableMulticoreScheduling { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enables integrity checks on Game content files
|
/// Enables integrity checks on Game content files
|
||||||
|
@ -188,7 +188,7 @@ namespace Ryujinx
|
||||||
|
|
||||||
device.System.State.SetLanguage(Instance.SystemLanguage);
|
device.System.State.SetLanguage(Instance.SystemLanguage);
|
||||||
|
|
||||||
if (Instance.EnableMultiCoreScheduling)
|
if (Instance.EnableMulticoreScheduling)
|
||||||
{
|
{
|
||||||
device.System.EnableMultiCoreScheduling();
|
device.System.EnableMultiCoreScheduling();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue