Use TaskFunc wherever posible (#2188)

This commit is contained in:
Estellar
2025-10-18 13:53:50 -03:00
committed by GitHub
parent f2cf20ce9b
commit 0965dffe70
9 changed files with 13 additions and 12 deletions

View File

@@ -956,7 +956,7 @@ void BlendPalettesGradually(u32 selectedPalettes, s8 delay, u8 coeff, u8 coeffTa
{
u8 taskId;
taskId = CreateTask((void *)Task_BlendPalettesGradually, priority);
taskId = CreateTask(Task_BlendPalettesGradually, priority);
gTasks[taskId].tCoeff = coeff;
gTasks[taskId].tCoeffTarget = coeffTarget;