early-access version 3564

main
pineappleEA 2023-05-07 18:30:35 +02:00
parent 65b875b623
commit cdb7d0d547
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3563. This is the source code for early-access 3564.
## Legal Notice ## Legal Notice

View File

@ -336,7 +336,7 @@ ALLOC_MEMBER(VaType)::Allocate(VaType size) {
ASSERT_MSG(false, "Unexpected allocator state!"); ASSERT_MSG(false, "Unexpected allocator state!");
} }
auto search_predecessor{this->blocks.begin()}; auto search_predecessor{std::next(this->blocks.begin())};
auto search_successor{std::next(search_predecessor)}; auto search_successor{std::next(search_predecessor)};
while (search_successor != this->blocks.end() && while (search_successor != this->blocks.end() &&