Skip to content
Snippets Groups Projects
Commit 309276a3 authored by bunnei's avatar bunnei
Browse files

IGBPRequestBufferResponseParcel: Fix response for libnx.

parent 1add3b20
No related branches found
No related tags found
No related merge requests found
......@@ -301,14 +301,11 @@ public:
protected:
void SerializeData() override {
// TODO(Subv): Find out what this all means
Write<u32_le>(1);
Write<u32_le>(sizeof(NVFlinger::IGBPBuffer));
Write<u32_le>(0); // Unknown
// TODO(bunnei): Find out what this all means. Writing anything non-zero here breaks libnx.
Write<u32_le>(0);
Write<u32_le>(0);
Write<u32_le>(0);
Write(buffer);
Write<u32_le>(0);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment