summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-09-19 07:37:25 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2019-09-19 07:37:25 +0200
commitf9259c03832eff2d71279802af56d14c14b69844 (patch)
treef45411a9f9421f047c58c7a89215daeefec26cfc /src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
parentMerge pull request #2784 from ReinUsesLisp/smem (diff)
downloadyuzu-f9259c03832eff2d71279802af56d14c14b69844.tar
yuzu-f9259c03832eff2d71279802af56d14c14b69844.tar.gz
yuzu-f9259c03832eff2d71279802af56d14c14b69844.tar.bz2
yuzu-f9259c03832eff2d71279802af56d14c14b69844.tar.lz
yuzu-f9259c03832eff2d71279802af56d14c14b69844.tar.xz
yuzu-f9259c03832eff2d71279802af56d14c14b69844.tar.zst
yuzu-f9259c03832eff2d71279802af56d14c14b69844.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_vic.cpp')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_vic.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
index 70e8091db..c695b8863 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
@@ -13,8 +13,9 @@ namespace Service::Nvidia::Devices {
nvhost_vic::nvhost_vic(Core::System& system) : nvdevice(system) {}
nvhost_vic::~nvhost_vic() = default;
-u32 nvhost_vic::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- IoctlCtrl& ctrl) {
+u32 nvhost_vic::ioctl(Ioctl command, const std::vector<u8>& input, const std::vector<u8>& input2,
+ std::vector<u8>& output, std::vector<u8>& output2, IoctlCtrl& ctrl,
+ IoctlVersion version) {
LOG_DEBUG(Service_NVDRV, "called, command=0x{:08X}, input_size=0x{:X}, output_size=0x{:X}",
command.raw, input.size(), output.size());