mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-11 19:22:56 +00:00
Merge pull request #12 from Disruption/stomas/bugfix/wrong-field-reference
Added 'this' reference to num_instructions field so it's properly updated
This commit is contained in:
commit
7527f238a1
|
@ -25,7 +25,7 @@ public:
|
|||
*/
|
||||
void Run(int num_instructions) {
|
||||
ExecuteInstructions(num_instructions);
|
||||
num_instructions += num_instructions;
|
||||
this->num_instructions += num_instructions;
|
||||
}
|
||||
|
||||
/// Step CPU by one instruction
|
||||
|
|
Loading…
Reference in a new issue