Browse Source

aoc: fix DLC listing (#12867)

nce_cpp
liamwhite 2 years ago
committed by GitHub
parent
commit
c0a03eca20
  1. 2
      src/core/hle/service/aoc/aoc_u.cpp

2
src/core/hle/service/aoc/aoc_u.cpp

@ -202,7 +202,7 @@ void AOC_U::ListAddOnContent(HLERequestContext& ctx) {
LOG_DEBUG(Service_AOC, "called with offset={}, count={}, process_id={}", offset, count, LOG_DEBUG(Service_AOC, "called with offset={}, count={}, process_id={}", offset, count,
process_id); process_id);
const auto current = system.GetApplicationProcessProgramID();
const auto current = FileSys::GetBaseTitleID(system.GetApplicationProcessProgramID());
std::vector<u32> out; std::vector<u32> out;
const auto& disabled = Settings::values.disabled_addons[current]; const auto& disabled = Settings::values.disabled_addons[current];

Loading…
Cancel
Save