From bd979e156b5dd1351e200b42d44c774a0bfcf9cb Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 16 Aug 2025 07:31:13 +1000 Subject: [PATCH] fix embed cast --- vulkan_util.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkan_util.d b/vulkan_util.d index 40f4205..f626514 100644 --- a/vulkan_util.d +++ b/vulkan_util.d @@ -283,5 +283,5 @@ u8[] Embed(string file_name) { import std.file; - return read(file_name); + return cast(u8[])read(file_name); }