From 30f6b684d2b14ec24da8b3c1d63df7eabe82cb36 Mon Sep 17 00:00:00 2001 From: David Marcec Date: Mon, 5 Feb 2018 00:56:33 -0800 Subject: [PATCH] Forgot u32 in enum class --- src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h index fb02679d79..fe6c2ba79a 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h +++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h @@ -21,7 +21,7 @@ public: u32 ioctl(u32 command, const std::vector& input, std::vector& output) override; private: - enum class IoctlCommand { + enum class IoctlCommand : u32 { IocGetCharacteristicsCommand = 0xC0B04705, IocGetTPCMasksCommand = 0xC0184706, IocGetActiveSlotMaskCommand = 0x80084714,