diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-14 15:04:44 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-14 15:09:20 +0200 |
commit | 2296e921d261857f4cb54efdad779f1f4626270d (patch) | |
tree | b4799cd5513bc20c18a1bc3b168b61a9f728e602 /src/core/hle/service/nvdrv/devices | |
parent | Merge pull request #4495 from lioncash/conv (diff) | |
download | yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.gz yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.bz2 yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.lz yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.xz yuzu-2296e921d261857f4cb54efdad779f1f4626270d.tar.zst yuzu-2296e921d261857f4cb54efdad779f1f4626270d.zip |
Diffstat (limited to 'src/core/hle/service/nvdrv/devices')
-rw-r--r-- | src/core/hle/service/nvdrv/devices/nvdevice.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvdevice.h b/src/core/hle/service/nvdrv/devices/nvdevice.h index 1b52511a5..0240d6643 100644 --- a/src/core/hle/service/nvdrv/devices/nvdevice.h +++ b/src/core/hle/service/nvdrv/devices/nvdevice.h @@ -21,8 +21,9 @@ namespace Service::Nvidia::Devices { /// implement the ioctl interface. class nvdevice { public: - explicit nvdevice(Core::System& system) : system{system} {}; + explicit nvdevice(Core::System& system) : system{system} {} virtual ~nvdevice() = default; + union Ioctl { u32_le raw; BitField<0, 8, u32> cmd; |