소스 검색

maxwell_3d: Reduce severity of ProcessSyncPoint

ReinUsesLisp 7 년 전
부모
커밋
ddcb711ee8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/video_core/engines/maxwell_3d.cpp

+ 2 - 2
src/video_core/engines/maxwell_3d.cpp

@@ -334,8 +334,8 @@ void Maxwell3D::ProcessSyncPoint() {
     const u32 sync_point = regs.sync_info.sync_point.Value();
     const u32 increment = regs.sync_info.increment.Value();
     const u32 cache_flush = regs.sync_info.unknown.Value();
-    UNIMPLEMENTED_MSG("Syncpoint Set {}, increment: {}, unk: {}", sync_point, increment,
-                      cache_flush);
+    LOG_DEBUG(HW_GPU, "Syncpoint set {}, increment: {}, unk: {}", sync_point, increment,
+              cache_flush);
 }
 
 void Maxwell3D::DrawArrays() {