mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-22 21:20:53 -05:00
Blocks should be synchronized on read-only fields (#5212)
* Blocks should be synchronized on read-only fields * more readonlys * fix alignment * more * Update ISelfController.cs * simplify new * simplify new
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Ryujinx.HLE.HOS.Services.Spl
|
||||
{
|
||||
private RandomNumberGenerator _rng;
|
||||
|
||||
private object _lock = new object();
|
||||
private readonly object _lock = new();
|
||||
|
||||
public IRandomInterface(ServiceCtx context)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user