Remove fixed seed

This commit is contained in:
Nikita Lisitsa 2024-08-19 22:15:43 +03:00
parent a3c008f807
commit d96a156764

View file

@ -947,7 +947,6 @@ namespace gmtk
std::uint64_t make_seed()
{
return 15249261661545616321ull;
random::device d;
return (std::uint64_t(d()) << 32) | d();
}