[turbine/glfw] Fix implicit conversion
Some checks are pending
Build / build (push) Waiting to run

This commit is contained in:
Gary Talent 2025-04-12 00:22:49 -05:00
parent b7f2c169ec
commit f9512d72e8

View File

@ -258,7 +258,7 @@ ox::Error setWindowIcon(Context &ctx, ox::SpanView<ox::SpanView<uint8_t>> const
.pixels = icon.pixels.data(),
});
}
glfwSetWindowIcon(ctx.window, imgs.size(), imgs.data());
glfwSetWindowIcon(ctx.window, static_cast<int>(imgs.size()), imgs.data());
return {};
}