diff options
author | Lioncash <mathew1800@gmail.com> | 2019-01-30 12:36:28 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-01-30 12:36:31 -0500 |
commit | 0b594f33447ae7a706a1a8bf5b305bcd17b77c06 (patch) | |
tree | ac3b6d9dc1c4624d7cf050be4e9e260c899695ed | |
parent | 3c3d9afd61f7f8b699befc6c6c50e51a28a7a4de (diff) |
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.
-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: u32 subchannel; ///< Current subchannel u32 method_count; ///< Current method count u32 length_pending; ///< Large NI command length pending - bool non_incrementing; ///< Current command’s NI flag + bool non_incrementing; ///< Current command's NI flag }; DmaState dma_state{}; |