summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-04-06 07:18:20 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-04-06 07:18:20 +0200
commitddcb711ee8a9bb2834aef62722acc6f1f744fe76 (patch)
tree8b56e3fbba3c27cec9aabd592618343dce92699e /src/video_core/engines/maxwell_3d.cpp
parentMerge pull request #2317 from FernandoS27/sync (diff)
downloadyuzu-ddcb711ee8a9bb2834aef62722acc6f1f744fe76.tar
yuzu-ddcb711ee8a9bb2834aef62722acc6f1f744fe76.tar.gz
yuzu-ddcb711ee8a9bb2834aef62722acc6f1f744fe76.tar.bz2
yuzu-ddcb711ee8a9bb2834aef62722acc6f1f744fe76.tar.lz
yuzu-ddcb711ee8a9bb2834aef62722acc6f1f744fe76.tar.xz
yuzu-ddcb711ee8a9bb2834aef62722acc6f1f744fe76.tar.zst
yuzu-ddcb711ee8a9bb2834aef62722acc6f1f744fe76.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 8194a4b4a..74403eed4 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/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() {