From b63881934547d9c0cd1684b7047d2a2cf2f53d86 Mon Sep 17 00:00:00 2001 From: Thog Date: Sun, 5 Jan 2020 17:17:24 +0100 Subject: [PATCH] Address comments --- Ryujinx.Common/ReactiveObject.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.Common/ReactiveObject.cs b/Ryujinx.Common/ReactiveObject.cs index 33aa218a77..8495c78f56 100644 --- a/Ryujinx.Common/ReactiveObject.cs +++ b/Ryujinx.Common/ReactiveObject.cs @@ -6,8 +6,8 @@ namespace Ryujinx.Common public class ReactiveObject { private ReaderWriterLock _readerWriterLock = new ReaderWriterLock(); - private bool _isInitialized = false; - private T _value; + private bool _isInitialized = false; + private T _value; public event EventHandler> Event;