aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Headless.SDL2/Program.cs
diff options
context:
space:
mode:
authorAlex Barney <thealexbarney@gmail.com>2022-01-12 04:22:19 -0700
committerGitHub <noreply@github.com>2022-01-12 12:22:19 +0100
commitf4bbc019b98fc026cd5e701d54be891e27077ff8 (patch)
treed9105a2aa8c3465c0f10786e9359a097a93a739e /Ryujinx.Headless.SDL2/Program.cs
parent6e0799580f0d1b473a79471c5d365c6524d97a86 (diff)
Update to LibHac 0.15.0 (#2986)
Diffstat (limited to 'Ryujinx.Headless.SDL2/Program.cs')
-rw-r--r--Ryujinx.Headless.SDL2/Program.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Headless.SDL2/Program.cs b/Ryujinx.Headless.SDL2/Program.cs
index 6e2172e3..71487a09 100644
--- a/Ryujinx.Headless.SDL2/Program.cs
+++ b/Ryujinx.Headless.SDL2/Program.cs
@@ -1,6 +1,7 @@
using ARMeilleure.Translation;
using ARMeilleure.Translation.PTC;
using CommandLine;
+using LibHac.Tools.FsSystem;
using Ryujinx.Audio.Backends.SDL2;
using Ryujinx.Common.Configuration;
using Ryujinx.Common.Configuration.Hid;
@@ -474,7 +475,7 @@ namespace Ryujinx.Headless.SDL2
(bool)options.EnableDockedMode,
(bool)options.EnablePtc,
(bool)options.EnableInternetAccess,
- (bool)options.EnableFsIntegrityChecks ? LibHac.FsSystem.IntegrityCheckLevel.ErrorOnInvalid : LibHac.FsSystem.IntegrityCheckLevel.None,
+ (bool)options.EnableFsIntegrityChecks ? IntegrityCheckLevel.ErrorOnInvalid : IntegrityCheckLevel.None,
options.FsGlobalAccessLogMode,
options.SystemTimeOffset,
options.SystemTimeZone,