LM: Don't create an unnecessary port in Initialize.

This commit is contained in:
Subv 2018-01-22 17:35:40 -05:00
parent 196f1226c5
commit 3541a04d4d
2 changed files with 10 additions and 15 deletions

View file

@ -5,7 +5,6 @@
#pragma once
#include <vector>
#include "core/hle/kernel/client_port.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/service/service.h"
@ -19,8 +18,6 @@ public:
private:
void Initialize(Kernel::HLERequestContext& ctx);
std::vector<Kernel::SharedPtr<Kernel::ClientPort>> registered_loggers;
};
/// Registers all LM services with the specified service manager.