From d96a156764a0405c9877568d923245279f6d5c28 Mon Sep 17 00:00:00 2001 From: lisyarus Date: Mon, 19 Aug 2024 22:15:43 +0300 Subject: [PATCH] Remove fixed seed --- source/application.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/source/application.cpp b/source/application.cpp index a47b2ce..1293768 100644 --- a/source/application.cpp +++ b/source/application.cpp @@ -947,7 +947,6 @@ namespace gmtk std::uint64_t make_seed() { - return 15249261661545616321ull; random::device d; return (std::uint64_t(d()) << 32) | d(); }