mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-02 13:01:18 +12:00
Add suggested changes
Co-authored-by: Exzap <Exzap@users.noreply.github.com>
This commit is contained in:
parent
8f2ede4057
commit
5260fb2386
1 changed files with 3 additions and 1 deletions
|
@ -169,8 +169,10 @@ struct AArch64GenContext_t : CodeGenerator
|
|||
|
||||
bool processAllJumps()
|
||||
{
|
||||
for (auto&& [jumpStart, jumpInfo] : jumps)
|
||||
for (auto jump : jumps)
|
||||
{
|
||||
auto jumpStart = jump.first;
|
||||
auto jumpInfo = jump.second;
|
||||
bool success = std::visit(
|
||||
[&, this](const auto& jump) {
|
||||
setSize(jumpStart);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue