updated audio mixed processor

This commit is contained in:
CrackedPixel 2024-08-06 00:43:47 -05:00
parent 9c2ba3bfb7
commit 9382709254

View File

@ -97,7 +97,7 @@ int main(void)
DrawRectangle(199, 199, 402, 34, LIGHTGRAY); DrawRectangle(199, 199, 402, 34, LIGHTGRAY);
for (int i = 0; i < 400; i++) for (int i = 0; i < 400; i++)
{ {
DrawLine(201 + i, 232 - (int)averageVolume[i] * 32, 201 + i, 232, MAROON); DrawLine(201 + i, 232 - (float)averageVolume[i] * 32, 201 + i, 232, MAROON);
} }
DrawRectangleLines(199, 199, 402, 34, GRAY); DrawRectangleLines(199, 199, 402, 34, GRAY);