mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 04:37:58 -05:00
vulkan: fix scheduler chunk reserve
This commit is contained in:
@ -328,7 +328,7 @@ void Scheduler::AcquireNewChunk() {
|
||||
chunk = std::make_unique<CommandChunk>();
|
||||
} else {
|
||||
// Otherwise, we can just take from the reserve.
|
||||
chunk = std::make_unique<CommandChunk>();
|
||||
chunk = std::move(chunk_reserve.back());
|
||||
chunk_reserve.pop_back();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user