diff options
author | bunnei <bunneidev@gmail.com> | 2021-09-30 21:34:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 21:34:28 +0200 |
commit | 8bd5742349007d3faa9d786450a20f31d5db0b94 (patch) | |
tree | 29c7669c76fcd9ff5dcd3aa204f68b9af88437a2 /src/video_core/engines/maxwell_dma.h | |
parent | Merge pull request #7104 from Morph1984/style (diff) | |
parent | maxwell_dma: Minor refactoring (diff) | |
download | yuzu-8bd5742349007d3faa9d786450a20f31d5db0b94.tar yuzu-8bd5742349007d3faa9d786450a20f31d5db0b94.tar.gz yuzu-8bd5742349007d3faa9d786450a20f31d5db0b94.tar.bz2 yuzu-8bd5742349007d3faa9d786450a20f31d5db0b94.tar.lz yuzu-8bd5742349007d3faa9d786450a20f31d5db0b94.tar.xz yuzu-8bd5742349007d3faa9d786450a20f31d5db0b94.tar.zst yuzu-8bd5742349007d3faa9d786450a20f31d5db0b94.zip |
Diffstat (limited to 'src/video_core/engines/maxwell_dma.h')
-rw-r--r-- | src/video_core/engines/maxwell_dma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h index 9e457ae16..a04514425 100644 --- a/src/video_core/engines/maxwell_dma.h +++ b/src/video_core/engines/maxwell_dma.h @@ -175,7 +175,7 @@ public: static_assert(sizeof(LaunchDMA) == 4); struct RemapConst { - enum Swizzle : u32 { + enum class Swizzle : u32 { SRC_X = 0, SRC_Y = 1, SRC_Z = 2, |