diff options
author | bunnei <bunneidev@gmail.com> | 2020-05-05 15:39:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 15:39:44 -0400 |
commit | eb2c50c5e692e13608c1d354473c3b22277c687e (patch) | |
tree | bf931f7b29ba1c40d557f1fd792ce3e0e71643d4 /src/video_core/gpu.cpp | |
parent | ea099301969d8e619a8d98790bfe3fca80821fbd (diff) |
Update src/video_core/gpu.cpp
Co-authored-by: David <25727384+ogniK5377@users.noreply.github.com>
Diffstat (limited to 'src/video_core/gpu.cpp')
-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 9d6b972622..8eb017f65d 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -349,7 +349,7 @@ void GPU::ProcessBindMethod(const MethodCall& method_call) { // Bind the current subchannel to the desired engine id. LOG_DEBUG(HW_GPU, "Binding subchannel {} to engine {}", method_call.subchannel, method_call.argument); - auto engine_id = static_cast<EngineID>(method_call.argument); + const auto engine_id = static_cast<EngineID>(method_call.argument); bound_engines[method_call.subchannel] = static_cast<EngineID>(engine_id); switch (engine_id) { case EngineID::FERMI_TWOD_A: |