cpu: fix prefetch list

This commit is contained in:
Megamouse 2026-05-31 01:45:43 +02:00
parent 66de4022b1
commit 4ca0f0b11d

View File

@ -1509,7 +1509,7 @@ bool cpu_thread::suspend_work::push(cpu_thread* _this) noexcept
{
for (u32 i = 0; i < work->prf_size; i++)
{
utils::prefetch_write(work->prf_list[0]);
utils::prefetch_write(work->prf_list[i]);
}
}