소스 검색

Update src/video_core/gpu.cpp

Co-authored-by: David <25727384+ogniK5377@users.noreply.github.com>
bunnei 6 년 전
부모
커밋
ea09930196
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video_core/gpu.cpp

+ 1 - 1
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));
     }
 }