1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-26 14:06:31 -05:00

Merge pull request #1434 from DarkLordZach/dlc-edge-case

aoc_u: Fix edge case with DLC that causes breaks
This commit is contained in:
bunnei
2018-10-03 21:39:23 -04:00
committed by GitHub

View File

@@ -84,7 +84,7 @@ void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) {
out.push_back(static_cast<u32>(add_on_content[i] & 0x7FF));
}
if (out.size() <= offset) {
if (out.size() < offset) {
IPC::ResponseBuilder rb{ctx, 2};
// TODO(DarkLordZach): Find the correct error code.
rb.Push(ResultCode(-1));