diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-13 03:15:53 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-02-13 03:24:39 +0100 |
commit | a9e4e8294a937397ae164242415c21615c9092b3 (patch) | |
tree | a611aab97ccf14f096a4f635e319a141d6abfbb0 | |
parent | TransactParcel: Move WriteBlock to narrowest scope. (diff) | |
download | yuzu-a9e4e8294a937397ae164242415c21615c9092b3.tar yuzu-a9e4e8294a937397ae164242415c21615c9092b3.tar.gz yuzu-a9e4e8294a937397ae164242415c21615c9092b3.tar.bz2 yuzu-a9e4e8294a937397ae164242415c21615c9092b3.tar.lz yuzu-a9e4e8294a937397ae164242415c21615c9092b3.tar.xz yuzu-a9e4e8294a937397ae164242415c21615c9092b3.tar.zst yuzu-a9e4e8294a937397ae164242415c21615c9092b3.zip |
-rw-r--r-- | src/core/hle/service/vi/vi.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index 7d9a41ded..cfdd4bf2a 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -490,6 +490,8 @@ private: IGBPQueryResponseParcel response{value}; std::vector<u8> response_buffer = response.Serialize(); Memory::WriteBlock(output_addr, response_buffer.data(), response_buffer.size()); + } else if (transaction == TransactionId::CancelBuffer) { + LOG_WARNING(Service_VI, "(STUBBED) called, transaction=CancelBuffer"); } else { ASSERT_MSG(false, "Unimplemented"); } |