From 300ab211e82f86fc19e0438557fcdf754b563176 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 7 Aug 2018 08:57:09 -0400 Subject: nvdrv: Make Ioctl()'s definition match its prototype The only reason this wasn't a compilation error is because we use little-endian systems. --- src/core/hle/service/nvdrv/nvdrv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') 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& input, std::vector& output) { +u32 Module::Ioctl(u32 fd, u32 command, const std::vector& input, std::vector& output) { auto itr = open_files.find(fd); ASSERT_MSG(itr != open_files.end(), "Tried to talk to an invalid device"); -- cgit v1.2.3