diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-07 14:57:09 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-07 14:57:11 +0200 |
commit | 300ab211e82f86fc19e0438557fcdf754b563176 (patch) | |
tree | 3efac4cc711377c9057122b340342a9535e32bcc /src/core/hle | |
parent | nvdrv: Get rid of indirect inclusions (diff) | |
download | yuzu-300ab211e82f86fc19e0438557fcdf754b563176.tar yuzu-300ab211e82f86fc19e0438557fcdf754b563176.tar.gz yuzu-300ab211e82f86fc19e0438557fcdf754b563176.tar.bz2 yuzu-300ab211e82f86fc19e0438557fcdf754b563176.tar.lz yuzu-300ab211e82f86fc19e0438557fcdf754b563176.tar.xz yuzu-300ab211e82f86fc19e0438557fcdf754b563176.tar.zst yuzu-300ab211e82f86fc19e0438557fcdf754b563176.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/nvdrv/nvdrv.cpp | 2 |
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"); |