diff --git a/src/olympic/turbine/src/glfw/gfx.cpp b/src/olympic/turbine/src/glfw/gfx.cpp index de601f74..9e1dc779 100644 --- a/src/olympic/turbine/src/glfw/gfx.cpp +++ b/src/olympic/turbine/src/glfw/gfx.cpp @@ -249,9 +249,9 @@ static ox::Result toGlfwImgPixels(ox::SpanView iconPng) noexc ox::Error setWindowIcon(Context &ctx, ox::SpanView iconPng) noexcept { OX_REQUIRE_M(icon, toGlfwImgPixels(iconPng)); GLFWimage const img { - .pixels = icon.pixels.data(), .width = icon.w, .height = icon.h, + .pixels = icon.pixels.data(), }; glfwSetWindowIcon(ctx.window, 1, &img); return {};