[client] splash: remove 0 array specifier from func prototype

This commit is contained in:
Geoffrey McRae 2023-11-11 13:24:19 +11:00
parent 0524980cb4
commit 9f3f8cc5bd

View File

@ -58,7 +58,7 @@ static void calcRadialVectors(float vectors[][2], int segments)
static void drawRadialGradient(ImDrawList * list, int x, int y, int w, int h,
ImU32 innerColor, ImU32 outerColor,
float vectors[0][2], int segments)
float vectors[][2], int segments)
{
const ImVec2 uv = list->_Data->TexUvWhitePixel;