forked from etc/pineapple-src
early-access version 3472
This commit is contained in:
parent
5116aade0e
commit
c00c96d9d4
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3471.
|
This is the source code for early-access 3472.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -328,7 +328,7 @@ void Scheduler::AcquireNewChunk() {
|
||||||
chunk = std::make_unique<CommandChunk>();
|
chunk = std::make_unique<CommandChunk>();
|
||||||
} else {
|
} else {
|
||||||
// Otherwise, we can just take from the reserve.
|
// Otherwise, we can just take from the reserve.
|
||||||
chunk = std::make_unique<CommandChunk>();
|
chunk = std::move(chunk_reserve.back());
|
||||||
chunk_reserve.pop_back();
|
chunk_reserve.pop_back();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue