Merge pull request #2226 from lioncash/private

kernel/server_port: Make data members private
This commit is contained in:
bunnei 2019-03-13 14:44:21 -04:00 committed by GitHub
commit e7850a7f11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 14 deletions

View file

@ -67,7 +67,7 @@ public:
if (port == nullptr) {
return nullptr;
}
return std::static_pointer_cast<T>(port->hle_handler);
return std::static_pointer_cast<T>(port->GetHLEHandler());
}
void InvokeControlRequest(Kernel::HLERequestContext& context);