Skip to content

Commit

Permalink
Other: Slightly reduce the level of CRT screen noise.
Browse files Browse the repository at this point in the history
  • Loading branch information
deanthecoder committed Mar 23, 2024
1 parent ea5fa29 commit a8d0e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Speculator/Speculator.Core/ZxDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public bool IsCrt
for (var i = 0; i < m_screenBuffer.Length; i++)
{
for (var j = 0; j < m_screenBuffer[0].Length; j++)
m_grain[i][j] = m_isCrt ? new Vector3((float)(m_random.NextDouble() * 12.0)) : Vector3.Zero;
m_grain[i][j] = m_isCrt ? new Vector3((float)(m_random.NextDouble() * 10.0)) : Vector3.Zero;
}

m_didPixelsChange = true;
Expand Down

0 comments on commit a8d0e89

Please sign in to comment.