fix embed cast

This commit is contained in:
Matthew 2025-08-16 07:31:13 +10:00
parent 3a1943bfd6
commit bd979e156b

View File

@ -283,5 +283,5 @@ u8[]
Embed(string file_name) Embed(string file_name)
{ {
import std.file; import std.file;
return read(file_name); return cast(u8[])read(file_name);
} }