diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-11-13 02:29:54 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2022-10-06 21:00:52 +0200 |
commit | 835b950f7ec300920b920b9b45f82ceaa4b33813 (patch) | |
tree | a54c27079e1191de090b078da06d134ef6587c54 /src | |
parent | VideoCore: Update MemoryManager (diff) | |
download | yuzu-835b950f7ec300920b920b9b45f82ceaa4b33813.tar yuzu-835b950f7ec300920b920b9b45f82ceaa4b33813.tar.gz yuzu-835b950f7ec300920b920b9b45f82ceaa4b33813.tar.bz2 yuzu-835b950f7ec300920b920b9b45f82ceaa4b33813.tar.lz yuzu-835b950f7ec300920b920b9b45f82ceaa4b33813.tar.xz yuzu-835b950f7ec300920b920b9b45f82ceaa4b33813.tar.zst yuzu-835b950f7ec300920b920b9b45f82ceaa4b33813.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_ctrl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h index 9bd10257b..594d20600 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h +++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h @@ -180,7 +180,8 @@ private: struct IocCtrlEventUnregisterBatchParams { u64_le user_events{}; }; - static_assert(sizeof(IocCtrlEventUnregisterBatchParams) == 8, "IocCtrlEventKill is incorrect size"); + static_assert(sizeof(IocCtrlEventUnregisterBatchParams) == 8, + "IocCtrlEventKill is incorrect size"); NvResult NvOsGetConfigU32(const std::vector<u8>& input, std::vector<u8>& output); NvResult IocCtrlEventWait(const std::vector<u8>& input, std::vector<u8>& output, |