summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2020-04-24 09:16:39 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2020-04-24 09:24:58 +0200
commit03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c (patch)
treee1c4b7166dd40c91d017af8dffd7acce39ee9430 /src/core
parentMerge pull request #3760 from Morph1984/trailing-filedir-separator (diff)
downloadyuzu-03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c.tar
yuzu-03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c.tar.gz
yuzu-03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c.tar.bz2
yuzu-03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c.tar.lz
yuzu-03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c.tar.xz
yuzu-03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c.tar.zst
yuzu-03a6f3b0f424ad2e4f0dc53e38b325cb1da6a91c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/vi/vi.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index 7f109f4eb..9390ca83d 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -267,7 +267,7 @@ protected:
private:
struct Data {
- u32_le unk_0;
+ u32_le unk_0{};
};
Data data{};
@@ -614,6 +614,14 @@ private:
ctx.WriteBuffer(response.Serialize());
break;
}
+ case TransactionId::SetBufferCount: {
+ LOG_WARNING(Service_VI, "(STUBBED) called, transaction=SetBufferCount");
+ [[maybe_unused]] const auto buffer = ctx.ReadBuffer();
+
+ IGBPEmptyResponseParcel response{};
+ ctx.WriteBuffer(response.Serialize());
+ break;
+ }
default:
ASSERT_MSG(false, "Unimplemented");
}