From 61ebeca765bb9c63415ef09b98e6bcafe6020e36 Mon Sep 17 00:00:00 2001
From: James Rowe <jroweboy@gmail.com>
Date: Tue, 4 Dec 2018 20:11:21 -0700
Subject: [PATCH] NS: Lowercase NS:S to ns:s like it should be

---
 src/core/hle/service/apt/ns.h     | 2 +-
 src/core/hle/service/apt/ns_s.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/hle/service/apt/ns.h b/src/core/hle/service/apt/ns.h
index e1515ad8f..7587ef54c 100644
--- a/src/core/hle/service/apt/ns.h
+++ b/src/core/hle/service/apt/ns.h
@@ -17,4 +17,4 @@ namespace Service::NS {
 /// Loads and launches the title identified by title_id in the specified media type.
 Kernel::SharedPtr<Kernel::Process> LaunchTitle(FS::MediaType media_type, u64 title_id);
 
-} // namespace Service::NS
\ No newline at end of file
+} // namespace Service::NS
diff --git a/src/core/hle/service/apt/ns_s.cpp b/src/core/hle/service/apt/ns_s.cpp
index df570bf8e..e9eb87174 100644
--- a/src/core/hle/service/apt/ns_s.cpp
+++ b/src/core/hle/service/apt/ns_s.cpp
@@ -7,7 +7,7 @@
 namespace Service::NS {
 
 NS_S::NS_S(std::shared_ptr<Service::APT::Module> apt)
-    : Service::APT::Module::NSInterface(std::move(apt), "NS:S", Service::APT::MaxAPTSessions) {
+    : Service::APT::Module::NSInterface(std::move(apt), "ns:s", 2) {
     static const FunctionInfo functions[] = {
         {0x000100C0, nullptr, "LaunchFIRM"},
         {0x000200C0, nullptr, "LaunchTitle"},