summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_m.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-09 00:18:50 +0100
committerbunnei <bunneidev@gmail.com>2018-01-11 05:28:16 +0100
commit927569bed8439f5c6156d84d6f21ca621c7f3945 (patch)
treecb9020ea5d81689749990edb01921a63e4de4a87 /src/core/hle/service/vi/vi_m.cpp
parentIPC: Allow passing arguments to the Interfaces when using PushIpcInterface (diff)
downloadyuzu-927569bed8439f5c6156d84d6f21ca621c7f3945.tar
yuzu-927569bed8439f5c6156d84d6f21ca621c7f3945.tar.gz
yuzu-927569bed8439f5c6156d84d6f21ca621c7f3945.tar.bz2
yuzu-927569bed8439f5c6156d84d6f21ca621c7f3945.tar.lz
yuzu-927569bed8439f5c6156d84d6f21ca621c7f3945.tar.xz
yuzu-927569bed8439f5c6156d84d6f21ca621c7f3945.tar.zst
yuzu-927569bed8439f5c6156d84d6f21ca621c7f3945.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/vi/vi_m.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/vi_m.cpp b/src/core/hle/service/vi/vi_m.cpp
index a883ba572..930f5e908 100644
--- a/src/core/hle/service/vi/vi_m.cpp
+++ b/src/core/hle/service/vi/vi_m.cpp
@@ -14,7 +14,7 @@ void VI_M::GetDisplayService(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
IPC::RequestBuilder rb{ctx, 2, 0, 0, 1};
- rb.PushIpcInterface<IApplicationDisplayService>();
+ rb.PushIpcInterface<IApplicationDisplayService>(nv_flinger);
}
VI_M::VI_M() : ServiceFramework("vi:m") {
@@ -23,6 +23,7 @@ VI_M::VI_M() : ServiceFramework("vi:m") {
{3, nullptr, "GetDisplayServiceWithProxyNameExchange"},
};
RegisterHandlers(functions);
+ nv_flinger = std::make_shared<NVFlinger>();
}
} // namespace VI