From 6c6e42375c625caf96441273dd3051698816bc14 Mon Sep 17 00:00:00 2001 From: wwylele Date: Thu, 15 Feb 2018 23:28:03 +0200 Subject: [PATCH] FS: correct maximum session the number is got from FS module code --- src/core/hle/service/fs/fs_user.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/fs/fs_user.cpp b/src/core/hle/service/fs/fs_user.cpp index 40b1ae579..292797bdd 100644 --- a/src/core/hle/service/fs/fs_user.cpp +++ b/src/core/hle/service/fs/fs_user.cpp @@ -693,7 +693,7 @@ void FS_USER::GetSaveDataSecureValue(Kernel::HLERequestContext& ctx) { rb.Push(0); // the secure value } -FS_USER::FS_USER() : ServiceFramework("fs:USER", 10 /*?*/) { +FS_USER::FS_USER() : ServiceFramework("fs:USER", 30) { static const FunctionInfo functions[] = { {0x000100C6, nullptr, "Dummy1"}, {0x040100C4, nullptr, "Control"},