summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvmap.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-01-21 22:56:58 +0100
committerLioncash <mathew1800@gmail.com>2018-01-21 23:07:13 +0100
commit687a17acae0944c0c585c58c69aca0391085f3ef (patch)
tree3c4810a0f6d5511afc9b0f3c09c8283b0208a2ea /src/core/hle/service/nvdrv/devices/nvmap.h
parentMerge pull request #129 from Rozelette/master (diff)
downloadyuzu-687a17acae0944c0c585c58c69aca0391085f3ef.tar
yuzu-687a17acae0944c0c585c58c69aca0391085f3ef.tar.gz
yuzu-687a17acae0944c0c585c58c69aca0391085f3ef.tar.bz2
yuzu-687a17acae0944c0c585c58c69aca0391085f3ef.tar.lz
yuzu-687a17acae0944c0c585c58c69aca0391085f3ef.tar.xz
yuzu-687a17acae0944c0c585c58c69aca0391085f3ef.tar.zst
yuzu-687a17acae0944c0c585c58c69aca0391085f3ef.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvmap.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvmap.h b/src/core/hle/service/nvdrv/devices/nvmap.h
index 6954c0324..42e00f370 100644
--- a/src/core/hle/service/nvdrv/devices/nvmap.h
+++ b/src/core/hle/service/nvdrv/devices/nvmap.h
@@ -48,12 +48,12 @@ private:
/// Mapping of currently allocated handles to the objects they represent.
std::unordered_map<u32, std::shared_ptr<Object>> handles;
- enum IoctlCommands {
- IocCreateCommand = 0xC0080101,
- IocFromIdCommand = 0xC0080103,
- IocAllocCommand = 0xC0200104,
- IocParamCommand = 0xC00C0109,
- IocGetIdCommand = 0xC008010E
+ enum class IoctlCommand : u32 {
+ Create = 0xC0080101,
+ FromId = 0xC0080103,
+ Alloc = 0xC0200104,
+ Param = 0xC00C0109,
+ GetId = 0xC008010E
};
struct IocCreateParams {