From fabf2e7b725dbdb218018f06c0d18a88dc3ce00d Mon Sep 17 00:00:00 2001 From: lizzie Date: Mon, 9 Mar 2026 20:53:01 +0000 Subject: [PATCH] fuckery2 --- .../hle/service/nvdrv/devices/nvhost_nvdec_common.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp b/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp index f7d6c33f77..eb434ec986 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp @@ -103,17 +103,13 @@ NvResult nvhost_nvdec_common::Submit(IoctlSubmit& params, std::span data, De for (std::size_t i = 0; i < syncpt_increments.size(); i++) { const SyncptIncr& syncpt_incr = syncpt_increments[i]; - fence_thresholds[i] = - syncpoint_manager.IncrementSyncpointMaxExt(syncpt_incr.id, syncpt_incr.increments); + fence_thresholds[i] = syncpoint_manager.IncrementSyncpointMaxExt(syncpt_incr.id, syncpt_incr.increments); } for (const auto& cmd_buffer : command_buffers) { const auto object = nvmap.GetHandle(cmd_buffer.memory_id); ASSERT_OR_EXECUTE(object, return NvResult::InvalidState;); - Core::Memory::CpuGuestMemory - cmdlist(session->process->GetMemory(), object->address + cmd_buffer.offset, - cmd_buffer.word_count); + Core::Memory::CpuGuestMemory cmdlist(session->process->GetMemory(), object->get().address + cmd_buffer.offset, cmd_buffer.word_count); host1x.PushEntries(fd, std::move(cmdlist)); }