diff options
| author | 2021-01-15 02:02:57 -0500 | |
|---|---|---|
| committer | 2021-01-15 02:15:32 -0500 | |
| commit | 8620de6b2030bef35360d029354f672cde8978f1 (patch) | |
| tree | ed1f105b1fef3fc9a5209c5106accaaee283ebf2 /src/video_core/cdma_pusher.h | |
| parent | Merge pull request #5354 from ReinUsesLisp/remove-common-color (diff) | |
| download | yuzu-8620de6b2030bef35360d029354f672cde8978f1.tar.gz yuzu-8620de6b2030bef35360d029354f672cde8978f1.tar.xz yuzu-8620de6b2030bef35360d029354f672cde8978f1.zip | |
common/bit_util: Replace CLZ/CTZ operations with standardized ones
Makes for less code that we need to maintain.
Diffstat (limited to 'src/video_core/cdma_pusher.h')
| -rw-r--r-- | src/video_core/cdma_pusher.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/cdma_pusher.h b/src/video_core/cdma_pusher.h index 8ca70b6dd..e5f212c1a 100644 --- a/src/video_core/cdma_pusher.h +++ b/src/video_core/cdma_pusher.h | |||
| @@ -126,7 +126,7 @@ private: | |||
| 126 | 126 | ||
| 127 | s32 count{}; | 127 | s32 count{}; |
| 128 | s32 offset{}; | 128 | s32 offset{}; |
| 129 | s32 mask{}; | 129 | u32 mask{}; |
| 130 | bool incrementing{}; | 130 | bool incrementing{}; |
| 131 | 131 | ||
| 132 | // Queue of command lists to be processed | 132 | // Queue of command lists to be processed |