summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvdrv.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-07 20:23:32 +0200
committerGitHub <noreply@github.com>2018-08-07 20:23:32 +0200
commitb09c4f45c77ae16b471d2dffbb43d4140b2aea27 (patch)
tree5a5f6a523ce89bde9030d2ea77cb033d83f6a596 /src/core/hle/service/nvdrv/nvdrv.cpp
parentMerge pull request #952 from lioncash/usb (diff)
parentnvdrv: Make Ioctl()'s definition match its prototype (diff)
downloadyuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.gz
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.bz2
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.lz
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.xz
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.zst
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/nvdrv.cpp')
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.cpp b/src/core/hle/service/nvdrv/nvdrv.cpp
index 1555ea806..e8b30921a 100644
--- a/src/core/hle/service/nvdrv/nvdrv.cpp
+++ b/src/core/hle/service/nvdrv/nvdrv.cpp
@@ -54,7 +54,7 @@ u32 Module::Open(const std::string& device_name) {
return fd;
}
-u32 Module::Ioctl(u32 fd, u32_le command, const std::vector<u8>& input, std::vector<u8>& output) {
+u32 Module::Ioctl(u32 fd, u32 command, const std::vector<u8>& input, std::vector<u8>& output) {
auto itr = open_files.find(fd);
ASSERT_MSG(itr != open_files.end(), "Tried to talk to an invalid device");