summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_m.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-02-26 23:49:32 +0100
committerLioncash <mathew1800@gmail.com>2019-02-27 02:16:23 +0100
commit92ea1c32d608cd258c3fc077f5aaf953536d7f45 (patch)
treea5a8bfa8c071f01f4c8cee5c9a2983a097c93f6d /src/core/hle/service/vi/vi_m.cpp
parentcore/ipc_helper: Allow popping all signed value types with RequestParser (diff)
downloadyuzu-92ea1c32d608cd258c3fc077f5aaf953536d7f45.tar
yuzu-92ea1c32d608cd258c3fc077f5aaf953536d7f45.tar.gz
yuzu-92ea1c32d608cd258c3fc077f5aaf953536d7f45.tar.bz2
yuzu-92ea1c32d608cd258c3fc077f5aaf953536d7f45.tar.lz
yuzu-92ea1c32d608cd258c3fc077f5aaf953536d7f45.tar.xz
yuzu-92ea1c32d608cd258c3fc077f5aaf953536d7f45.tar.zst
yuzu-92ea1c32d608cd258c3fc077f5aaf953536d7f45.zip
Diffstat (limited to 'src/core/hle/service/vi/vi_m.cpp')
-rw-r--r--src/core/hle/service/vi/vi_m.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi_m.cpp b/src/core/hle/service/vi/vi_m.cpp
index 6e3e0bd8f..06070087f 100644
--- a/src/core/hle/service/vi/vi_m.cpp
+++ b/src/core/hle/service/vi/vi_m.cpp
@@ -20,9 +20,9 @@ VI_M::VI_M(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger)
VI_M::~VI_M() = default;
void VI_M::GetDisplayService(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_VI, "(STUBBED) called");
+ LOG_DEBUG(Service_VI, "called");
- detail::GetDisplayServiceImpl(ctx, nv_flinger);
+ detail::GetDisplayServiceImpl(ctx, nv_flinger, Permission::Manager);
}
} // namespace Service::VI