summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-01-28 17:05:07 +0100
committerGitHub <noreply@github.com>2019-01-28 17:05:07 +0100
commit72c48e01c97f7f94c63176838525909731d1aa9a (patch)
tree68a17274bf5cd7735a212945a2c376957ab04307
parentMerge pull request #2060 from lioncash/exception (diff)
parentservice/vi: Remove stubbed notifier from SetLayerVisibility (diff)
downloadyuzu-72c48e01c97f7f94c63176838525909731d1aa9a.tar
yuzu-72c48e01c97f7f94c63176838525909731d1aa9a.tar.gz
yuzu-72c48e01c97f7f94c63176838525909731d1aa9a.tar.bz2
yuzu-72c48e01c97f7f94c63176838525909731d1aa9a.tar.lz
yuzu-72c48e01c97f7f94c63176838525909731d1aa9a.tar.xz
yuzu-72c48e01c97f7f94c63176838525909731d1aa9a.tar.zst
yuzu-72c48e01c97f7f94c63176838525909731d1aa9a.zip
-rw-r--r--src/core/hle/service/vi/vi.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index 70c933934..0f2c25182 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -704,13 +704,14 @@ private:
rb.Push(RESULT_SUCCESS);
}
+ // This function currently does nothing but return a success error code in
+ // the vi library itself, so do the same thing, but log out the passed in values.
void SetLayerVisibility(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
const u64 layer_id = rp.Pop<u64>();
const bool visibility = rp.Pop<bool>();
- LOG_WARNING(Service_VI, "(STUBBED) called, layer_id=0x{:08X}, visibility={}", layer_id,
- visibility);
+ LOG_DEBUG(Service_VI, "called, layer_id=0x{:08X}, visibility={}", layer_id, visibility);
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);