diff options
author | bunnei <bunneidev@gmail.com> | 2020-05-05 21:39:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 21:39:37 +0200 |
commit | ea099301969d8e619a8d98790bfe3fca80821fbd (patch) | |
tree | 2089f189c1d7b8d91dc15a78696e4a27dc899b74 | |
parent | Clang Format and Documentation. (diff) | |
download | yuzu-ea099301969d8e619a8d98790bfe3fca80821fbd.tar yuzu-ea099301969d8e619a8d98790bfe3fca80821fbd.tar.gz yuzu-ea099301969d8e619a8d98790bfe3fca80821fbd.tar.bz2 yuzu-ea099301969d8e619a8d98790bfe3fca80821fbd.tar.lz yuzu-ea099301969d8e619a8d98790bfe3fca80821fbd.tar.xz yuzu-ea099301969d8e619a8d98790bfe3fca80821fbd.tar.zst yuzu-ea099301969d8e619a8d98790bfe3fca80821fbd.zip |
-rw-r--r-- | src/video_core/gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index c4f33838c..9d6b97262 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -368,7 +368,7 @@ void GPU::ProcessBindMethod(const MethodCall& method_call) { dma_pusher->BindSubchannel(kepler_memory.get(), method_call.subchannel); break; default: - UNIMPLEMENTED_MSG("Unimplemented engine"); + UNIMPLEMENTED_MSG("Unimplemented engine {:04X}", static_cast<u32>(engine_id)); } } |