diff options
author | Lioncash <mathew1800@gmail.com> | 2020-08-14 14:26:47 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-08-14 14:26:50 +0200 |
commit | 34ec64233a57cea75faa66029e2e1b50b9587d87 (patch) | |
tree | 32964a6281fde3d1957ce7966415848a983aa318 /src/video_core | |
parent | Merge pull request #4495 from lioncash/conv (diff) | |
download | yuzu-34ec64233a57cea75faa66029e2e1b50b9587d87.tar yuzu-34ec64233a57cea75faa66029e2e1b50b9587d87.tar.gz yuzu-34ec64233a57cea75faa66029e2e1b50b9587d87.tar.bz2 yuzu-34ec64233a57cea75faa66029e2e1b50b9587d87.tar.lz yuzu-34ec64233a57cea75faa66029e2e1b50b9587d87.tar.xz yuzu-34ec64233a57cea75faa66029e2e1b50b9587d87.tar.zst yuzu-34ec64233a57cea75faa66029e2e1b50b9587d87.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/macro/macro_interpreter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/macro/macro_interpreter.cpp b/src/video_core/macro/macro_interpreter.cpp index aa5256419..bd01fd1f2 100644 --- a/src/video_core/macro/macro_interpreter.cpp +++ b/src/video_core/macro/macro_interpreter.cpp @@ -34,7 +34,6 @@ void MacroInterpreterImpl::Execute(const std::vector<u32>& parameters, u32 metho this->parameters = std::make_unique<u32[]>(num_parameters); } std::memcpy(this->parameters.get(), parameters.data(), num_parameters * sizeof(u32)); - this->num_parameters = num_parameters; // Execute the code until we hit an exit condition. bool keep_executing = true; |