summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am_net.cpp
diff options
context:
space:
mode:
authorpurpasmart96 <kanzoconfigz@hotmail.com>2015-06-12 00:12:16 +0200
committerpurpasmart96 <kanzoconfigz@hotmail.com>2015-06-12 05:41:59 +0200
commit7933dbe6a0eee766a64b26f7d4461a40e473fcdc (patch)
tree91ae37d96b1e508f63055f285c64225811237b8a /src/core/hle/service/am_net.cpp
parentMerge pull request #848 from lioncash/ldm (diff)
downloadyuzu-7933dbe6a0eee766a64b26f7d4461a40e473fcdc.tar
yuzu-7933dbe6a0eee766a64b26f7d4461a40e473fcdc.tar.gz
yuzu-7933dbe6a0eee766a64b26f7d4461a40e473fcdc.tar.bz2
yuzu-7933dbe6a0eee766a64b26f7d4461a40e473fcdc.tar.lz
yuzu-7933dbe6a0eee766a64b26f7d4461a40e473fcdc.tar.xz
yuzu-7933dbe6a0eee766a64b26f7d4461a40e473fcdc.tar.zst
yuzu-7933dbe6a0eee766a64b26f7d4461a40e473fcdc.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/am_net.cpp (renamed from src/core/hle/service/am_net.cpp)17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/core/hle/service/am_net.cpp b/src/core/hle/service/am/am_net.cpp
index ba2a499f1..b1af0e9d8 100644
--- a/src/core/hle/service/am_net.cpp
+++ b/src/core/hle/service/am/am_net.cpp
@@ -3,12 +3,11 @@
// Refer to the license.txt file included.
#include "core/hle/hle.h"
-#include "core/hle/service/am_net.h"
+#include "core/hle/service/am/am.h"
+#include "core/hle/service/am/am_net.h"
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace AM_NET
-
-namespace AM_NET {
+namespace Service {
+namespace AM {
const Interface::FunctionInfo FunctionTable[] = {
{0x08010000, nullptr, "OpenTicket"},
@@ -33,11 +32,9 @@ const Interface::FunctionInfo FunctionTable[] = {
{0x081B00C2, nullptr, "InstallTitlesFinish"},
};
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// Interface class
-
-Interface::Interface() {
+AM_NET_Interface::AM_NET_Interface() {
Register(FunctionTable);
}
-} // namespace
+} // namespace AM
+} // namespace Service