summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-19 21:29:03 +0100
committerGitHub <noreply@github.com>2018-03-19 21:29:03 +0100
commita90ab1dec7b4b4cefc73115310dec57363114a05 (patch)
tree45ebd96f672851f816aca4b09b599df5ee8f8c5c /src/video_core/engines
parentMerge pull request #251 from Subv/tic_tsc (diff)
parentClang Fixes (diff)
downloadyuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar
yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.gz
yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.bz2
yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.lz
yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.xz
yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.zst
yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 4fdea0fdc..4d9745e48 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -153,7 +153,8 @@ void Maxwell3D::ProcessQueryGet() {
break;
}
default:
- UNIMPLEMENTED_MSG("Query mode %u not implemented", regs.query.query_get.mode.Value());
+ UNIMPLEMENTED_MSG("Query mode %u not implemented",
+ static_cast<u32>(regs.query.query_get.mode.Value()));
}
}