From 3cb3c64459ef5ffb340d1f6be28a1ab546349319 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Mon, 9 Oct 2023 14:06:13 -0700 Subject: [PATCH] update random state comment --- src/Random.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Random.cs b/src/Random.cs index 0a38c21..a6fb7b7 100644 --- a/src/Random.cs +++ b/src/Random.cs @@ -46,7 +46,7 @@ namespace MoonTools.ECS return s; } - // expects a span of 512 bytes + // expects a span of STATE_BYTE_COUNT bytes public unsafe void SaveState(Span bytes) { #if DEBUG @@ -69,7 +69,7 @@ namespace MoonTools.ECS } } - // expects a span of 512 bytes + // expects a span of STATE_BYTE_COUNT bytes public unsafe void LoadState(Span bytes) { #if DEBUG