diff options
| author | 2022-11-20 13:30:35 -0500 | |
|---|---|---|
| committer | 2022-11-20 13:30:35 -0500 | |
| commit | aab68674c0c0174c9f23c9eb8ff350104aee530b (patch) | |
| tree | df40176849191d0a99d814fe4c9c505d04ae6239 /src | |
| parent | Merge pull request #9216 from vonchenplus/reimp_inline_index_buffer (diff) | |
| parent | dmnt:cht: fix copy-paste error (diff) | |
| download | yuzu-aab68674c0c0174c9f23c9eb8ff350104aee530b.tar.gz yuzu-aab68674c0c0174c9f23c9eb8ff350104aee530b.tar.xz yuzu-aab68674c0c0174c9f23c9eb8ff350104aee530b.zip | |
Merge pull request #9279 from liamwhite/this-would-have-never-happened-in-rust
dmnt:cht: fix copy-paste error
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/memory/dmnt_cheat_vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory/dmnt_cheat_vm.cpp b/src/core/memory/dmnt_cheat_vm.cpp index de96fcb8e..31ffc4fbb 100644 --- a/src/core/memory/dmnt_cheat_vm.cpp +++ b/src/core/memory/dmnt_cheat_vm.cpp | |||
| @@ -761,7 +761,7 @@ void DmntCheatVm::Execute(const CheatProcessMetadata& metadata) { | |||
| 761 | u64 src_address = | 761 | u64 src_address = |
| 762 | GetCheatProcessAddress(metadata, begin_cond->mem_type, begin_cond->rel_address); | 762 | GetCheatProcessAddress(metadata, begin_cond->mem_type, begin_cond->rel_address); |
| 763 | u64 src_value = 0; | 763 | u64 src_value = 0; |
| 764 | switch (store_static->bit_width) { | 764 | switch (begin_cond->bit_width) { |
| 765 | case 1: | 765 | case 1: |
| 766 | case 2: | 766 | case 2: |
| 767 | case 4: | 767 | case 4: |