Fix: Build error on headless build

This simple patch removes an "UNUSED_VARS" macro referencing
a variable which doesn't exist (r_unit_size).

It only affects the headless build

Differential Revision: https://developer.blender.org/D7464
Reviewed By: harley
This commit is contained in:
Gary Oberbrunner 2020-04-17 18:19:56 -06:00 committed by Ray Molenkamp
parent 76b3aac802
commit 8fd9516a71
1 changed files with 0 additions and 1 deletions

View File

@ -254,7 +254,6 @@ static ImBuf *wm_block_splash_image(int width, int *r_height)
return ibuf;
#else
UNUSED_VARS(r_unit_size);
return NULL;
#endif
}