diff --git a/src/dotnet/MonoGame.Extended.Particles/ParticleEmitter.cs b/src/dotnet/MonoGame.Extended.Particles/ParticleEmitter.cs index 13b22b44..a7116869 100644 --- a/src/dotnet/MonoGame.Extended.Particles/ParticleEmitter.cs +++ b/src/dotnet/MonoGame.Extended.Particles/ParticleEmitter.cs @@ -11,7 +11,7 @@ namespace MonoGame.Extended.Particles { public unsafe class ParticleEmitter : IDisposable { - private readonly FastRandom _random = new FastRandom(Guid.NewGuid().GetHashCode()); + private readonly FastRandom _random = new FastRandom(Math.Abs(Guid.NewGuid().GetHashCode())); private float _totalSeconds; [JsonConstructor]