mirror of
https://github.com/glfw/glfw.git
synced 2024-11-26 06:14:35 +00:00
C90 is so old
This commit is contained in:
parent
f1793b8490
commit
00c79cd3b2
@ -72,7 +72,7 @@ static void set_icon(GLFWwindow* window, int iconColor)
|
||||
double green = (cos(SPEED * time * M_PI * 1.5) + 1.0) / 2.0;
|
||||
double blue = (cos(SPEED * time * M_PI * 2.0) + 1.0) / 2.0;
|
||||
|
||||
unsigned char pixels[width * height * 4];
|
||||
unsigned char* pixels = malloc(width * height * 4);
|
||||
|
||||
for (x = 0; x < width; ++x)
|
||||
{
|
||||
@ -97,6 +97,8 @@ static void set_icon(GLFWwindow* window, int iconColor)
|
||||
glfwSetWindowIcon(0, 1, &image);
|
||||
|
||||
glfwSetErrorCallback(error_callback);
|
||||
|
||||
free(pixels);
|
||||
}
|
||||
|
||||
static void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
|
||||
|
Loading…
Reference in New Issue
Block a user