diff options
| author | 2022-03-19 23:10:46 -0700 | |
|---|---|---|
| committer | 2022-03-24 18:13:34 -0700 | |
| commit | 241ecae867347ff710641a3683362ee7f4c6a7a1 (patch) | |
| tree | 36cb4f11cc1987df5dd4982e00b72c8f9700226a /src | |
| parent | hle: nvflinger: Remove unused unordered_map include. (diff) | |
| download | yuzu-241ecae867347ff710641a3683362ee7f4c6a7a1.tar.gz yuzu-241ecae867347ff710641a3683362ee7f4c6a7a1.tar.xz yuzu-241ecae867347ff710641a3683362ee7f4c6a7a1.zip | |
hle: nvdrv: nvdata: Cleanup NvFence static assert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nvdrv/nvdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/nvdata.h b/src/core/hle/service/nvdrv/nvdata.h index 33cbd8904..3069c3c80 100644 --- a/src/core/hle/service/nvdrv/nvdata.h +++ b/src/core/hle/service/nvdrv/nvdata.h | |||
| @@ -20,7 +20,7 @@ struct NvFence { | |||
| 20 | s32 id; | 20 | s32 id; |
| 21 | u32 value; | 21 | u32 value; |
| 22 | }; | 22 | }; |
| 23 | static_assert(sizeof(NvFence) == 8, "Fence has wrong size"); | 23 | static_assert(sizeof(NvFence) == 8, "NvFence has wrong size"); |
| 24 | 24 | ||
| 25 | enum class NvResult : u32 { | 25 | enum class NvResult : u32 { |
| 26 | Success = 0x0, | 26 | Success = 0x0, |