summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/act/act.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/act/act.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/core/hle/service/act/act.cpp b/src/core/hle/service/act/act.cpp
deleted file mode 100644
index 9600036c0..000000000
--- a/src/core/hle/service/act/act.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#include "core/hle/service/act/act.h"
-#include "core/hle/service/act/act_a.h"
-#include "core/hle/service/act/act_u.h"
-
-namespace Service {
-namespace ACT {
-
-void Init() {
- AddService(new ACT_A);
- AddService(new ACT_U);
-}
-
-} // namespace ACT
-} // namespace Service