diff options
| author | David Marcec <dmarcecguzman@gmail.com> | 2018-04-22 19:02:18 -0700 |
|---|---|---|
| committer | David Marcec <dmarcecguzman@gmail.com> | 2018-04-22 19:02:18 -0700 |
| commit | 27650499bc74ec642c253a84fcf7f1c7812fdcac (patch) | |
| tree | 90d6fd8921ae0e319166f4d52ade2ed71237cfb3 /src/core/hle/service/nvdrv | |
| parent | df669bc540d0ffec4afd298fdeb7767c3a4ea242 (diff) | |
GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.
Diffstat (limited to 'src/core/hle/service/nvdrv')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp index 44ae9c08a..5008d7cbf 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp @@ -79,7 +79,7 @@ u32 nvhost_ctrl_gpu::GetTPCMasks(const std::vector<u8>& input, std::vector<u8>& std::memcpy(¶ms, input.data(), input.size()); LOG_WARNING(Service_NVDRV, "(STUBBED) called, mask=0x%x, mask_buf_addr=0x%" PRIx64, params.mask_buf_size, params.mask_buf_addr); - params.unk = 0xcafe; // Needs to be non 0, what does this actually do? + params.unk = 0xcafe; // TODO(ogniK): Needs to be non 0, what does this actually do? std::memcpy(output.data(), ¶ms, sizeof(params)); return 0; } |
