summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/kepler_compute.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-04-23 14:02:24 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2019-04-23 14:02:24 +0200
commit021d28c9b81d86d52b989b4cc6828f33c6a63c9b (patch)
tree9b0245e332e799469a90c99069e3647303556c06 /src/video_core/engines/kepler_compute.cpp
parentImplement Maxwell3D Data Upload (diff)
downloadyuzu-021d28c9b81d86d52b989b4cc6828f33c6a63c9b.tar
yuzu-021d28c9b81d86d52b989b4cc6828f33c6a63c9b.tar.gz
yuzu-021d28c9b81d86d52b989b4cc6828f33c6a63c9b.tar.bz2
yuzu-021d28c9b81d86d52b989b4cc6828f33c6a63c9b.tar.lz
yuzu-021d28c9b81d86d52b989b4cc6828f33c6a63c9b.tar.xz
yuzu-021d28c9b81d86d52b989b4cc6828f33c6a63c9b.tar.zst
yuzu-021d28c9b81d86d52b989b4cc6828f33c6a63c9b.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/kepler_compute.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/kepler_compute.cpp b/src/video_core/engines/kepler_compute.cpp
index 28f1f6a7d..7404a8163 100644
--- a/src/video_core/engines/kepler_compute.cpp
+++ b/src/video_core/engines/kepler_compute.cpp
@@ -34,7 +34,7 @@ void KeplerCompute::CallMethod(const GPU::MethodCall& method_call) {
break;
}
case KEPLER_COMPUTE_REG_INDEX(data_upload): {
- bool is_last_call = method_call.IsLastCall();
+ const bool is_last_call = method_call.IsLastCall();
upload_state.ProcessData(method_call.argument, is_last_call);
if (is_last_call) {
system.GPU().Maxwell3D().dirty_flags.OnMemoryWrite();