Updated random interface further.

This commit is contained in:
Christoffer Lerno
2023-08-26 13:22:02 +02:00
parent bea9ac010c
commit b1f52cf8a9
4 changed files with 12 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ const MUL_LCG64 @local = 0xd1342543de82ef95;
macro make_seed($Type, char[] input)
{
$Type return_value;
seeder(input, @to_byte_view(return_value));
seeder(input, @as_char_view(return_value));
return return_value;
}