service: removed PT_A from, as this was just an alias for APT_U

This commit is contained in:
bunnei 2014-05-30 00:22:25 -04:00
parent 007b7edada
commit 2482be13df

View file

@ -13,7 +13,6 @@
#include "core/hle/service/gsp.h"
#include "core/hle/service/hid.h"
#include "core/hle/service/ndm.h"
#include "core/hle/service/pt.h"
#include "core/hle/service/srv.h"
#include "core/hle/kernel/kernel.h"
@ -75,7 +74,6 @@ void Init() {
g_manager->AddService(new GSP_GPU::Interface);
g_manager->AddService(new HID_User::Interface);
g_manager->AddService(new NDM_U::Interface);
g_manager->AddService(new PT_A::Interface);
NOTICE_LOG(HLE, "initialized OK");
}