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

This commit is contained in:
Subv
2018-01-22 17:35:40 -05:00
parent 67c43e9200
commit 1a9c96e4de
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.