Issue #3087: error compiling for Windows.

s/THREAD_MODE_ABOVE_NORMAL/THREAD_PRIORITY_ABOVE_NORMAL/
Thanks to Sylvie Alexandre for noticing and searching this.
This commit is contained in:
Jehan
2019-03-08 17:29:16 +01:00
parent 21d131636a
commit ebc3ef3c5e

View File

@ -218,7 +218,7 @@ gimp_parallel_run_async_independent_full (gint priority,
#if defined (G_OS_WIN32)
if (task->priority < 0)
{
SetThreadPriority (GetCurrentThread (), THREAD_MODE_ABOVE_NORMAL);
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_ABOVE_NORMAL);
}
else if (task->priority > 0)
{