diff options
author | N00byKing <N00byKing@hotmail.de> | 2018-03-19 17:53:35 +0100 |
---|---|---|
committer | N00byKing <N00byKing@hotmail.de> | 2018-03-19 17:53:35 +0100 |
commit | 1d8b6ad13b4808034298b856c24a78d4d87acac2 (patch) | |
tree | 45ebd96f672851f816aca4b09b599df5ee8f8c5c /src/video_core | |
parent | oops (diff) | |
download | yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar.gz yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar.bz2 yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar.lz yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar.xz yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.tar.zst yuzu-1d8b6ad13b4808034298b856c24a78d4d87acac2.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 3 |
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 cf402f93d..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", static_cast<u32>(regs.query.query_get.mode.Value())); + UNIMPLEMENTED_MSG("Query mode %u not implemented", + static_cast<u32>(regs.query.query_get.mode.Value())); } } |