소스 검색

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.
Lioncash 7 년 전
부모
커밋
0b594f3344
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video_core/dma_pusher.h

+ 1 - 1
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 commands NI flag
+        bool non_incrementing; ///< Current command's NI flag
     };
 
     DmaState dma_state{};