diff options
author | Subv <subv2112@gmail.com> | 2018-05-25 00:32:46 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-05-25 00:32:46 +0200 |
commit | e2db7a83f6ae6a087a941e512d566f8ec60f8f8e (patch) | |
tree | d77a286e025749a8618b2b8588234c43f1e19d43 /src | |
parent | Merge pull request #464 from bunnei/fix-msvc (diff) | |
download | yuzu-e2db7a83f6ae6a087a941e512d566f8ec60f8f8e.tar yuzu-e2db7a83f6ae6a087a941e512d566f8ec60f8f8e.tar.gz yuzu-e2db7a83f6ae6a087a941e512d566f8ec60f8f8e.tar.bz2 yuzu-e2db7a83f6ae6a087a941e512d566f8ec60f8f8e.tar.lz yuzu-e2db7a83f6ae6a087a941e512d566f8ec60f8f8e.tar.xz yuzu-e2db7a83f6ae6a087a941e512d566f8ec60f8f8e.tar.zst yuzu-e2db7a83f6ae6a087a941e512d566f8ec60f8f8e.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/command_processor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index 2eaece298..d72d6f760 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp @@ -36,7 +36,6 @@ void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) if (method == static_cast<u32>(BufferMethods::BindObject)) { // Bind the current subchannel to the desired engine id. NGLOG_DEBUG(HW_GPU, "Binding subchannel {} to engine {}", subchannel, value); - ASSERT(bound_engines.find(subchannel) == bound_engines.end()); bound_engines[subchannel] = static_cast<EngineID>(value); return; } |