Fix: Compilation error on Windows

1e523e2f5d was based on an earlier
version and this compilation error slipped to the cracks.
This commit is contained in:
Jeroen Bakker
2025-09-01 13:51:01 +02:00
parent 8d9754bfaa
commit c215ecfda9

View File

@@ -164,7 +164,7 @@ static void wm_jobs_update_qos(const wmWindowManager *wm)
{
/* A QoS API is currently only available for Windows. */
#if OS_WINDOWS
LISTBASE_FOREACH (wmJob *, wm_job, &wm->jobs) {
LISTBASE_FOREACH (wmJob *, wm_job, &wm->runtime->jobs) {
if (wm_job->flag & WM_JOB_PRIORITY) {
BLI_windows_process_set_qos(QoSMode::HIGH, QoSPrecedence::JOB);
return;