mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 20:54:29 +01:00
jitstate: Remove code argument from ResetRSB
This commit is contained in:
parent
ea6a4e82b5
commit
b10c438e8e
3 changed files with 8 additions and 7 deletions
|
|
@ -14,8 +14,9 @@
|
|||
namespace Dynarmic {
|
||||
namespace BackendX64 {
|
||||
|
||||
void JitState::ResetRSB(const BlockOfCode* code) {
|
||||
rsb_codeptrs.fill(reinterpret_cast<u64>(code->GetReturnFromRunCodeAddress()));
|
||||
void JitState::ResetRSB() {
|
||||
rsb_location_descriptors.fill(0xFFFFFFFFFFFFFFFFull);
|
||||
rsb_codeptrs.fill(0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue