diff options
| author | 2019-01-30 12:36:28 -0500 | |
|---|---|---|
| committer | 2019-01-30 12:36:31 -0500 | |
| commit | 0b594f33447ae7a706a1a8bf5b305bcd17b77c06 (patch) | |
| tree | ac3b6d9dc1c4624d7cf050be4e9e260c899695ed /src/video_core/dma_pusher.h | |
| parent | Merge pull request #2070 from ReinUsesLisp/cubearray-view (diff) | |
| download | yuzu-0b594f33447ae7a706a1a8bf5b305bcd17b77c06.tar.gz yuzu-0b594f33447ae7a706a1a8bf5b305bcd17b77c06.tar.xz yuzu-0b594f33447ae7a706a1a8bf5b305bcd17b77c06.zip | |
video_core/dma_pusher: Silence C4828 warnings
This was previously causing:
warning C4828: The file contains a character starting at offset 0xa33
that is illegal in the current source character set (codepage 65001).
warnings on Windows when compiling yuzu.
Diffstat (limited to 'src/video_core/dma_pusher.h')
| -rw-r--r-- | src/video_core/dma_pusher.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/dma_pusher.h b/src/video_core/dma_pusher.h index 16e0697c4..1097e5c49 100644 --- a/src/video_core/dma_pusher.h +++ b/src/video_core/dma_pusher.h | |||
| @@ -83,7 +83,7 @@ private: | |||
| 83 | u32 subchannel; ///< Current subchannel | 83 | u32 subchannel; ///< Current subchannel |
| 84 | u32 method_count; ///< Current method count | 84 | u32 method_count; ///< Current method count |
| 85 | u32 length_pending; ///< Large NI command length pending | 85 | u32 length_pending; ///< Large NI command length pending |
| 86 | bool non_incrementing; ///< Current command’s NI flag | 86 | bool non_incrementing; ///< Current command's NI flag |
| 87 | }; | 87 | }; |
| 88 | 88 | ||
| 89 | DmaState dma_state{}; | 89 | DmaState dma_state{}; |