From f9512d72e8f80823eb4429e16f8eea5c6a5fcafe Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 12 Apr 2025 00:22:49 -0500 Subject: [PATCH] [turbine/glfw] Fix implicit conversion --- src/olympic/turbine/src/glfw/gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/olympic/turbine/src/glfw/gfx.cpp b/src/olympic/turbine/src/glfw/gfx.cpp index a9f9bead..6de8a52e 100644 --- a/src/olympic/turbine/src/glfw/gfx.cpp +++ b/src/olympic/turbine/src/glfw/gfx.cpp @@ -258,7 +258,7 @@ ox::Error setWindowIcon(Context &ctx, ox::SpanView> const .pixels = icon.pixels.data(), }); } - glfwSetWindowIcon(ctx.window, imgs.size(), imgs.data()); + glfwSetWindowIcon(ctx.window, static_cast(imgs.size()), imgs.data()); return {}; }