aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Input/MouseStateSnapshot.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Input/MouseStateSnapshot.cs')
-rw-r--r--src/Ryujinx.Input/MouseStateSnapshot.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.Input/MouseStateSnapshot.cs b/src/Ryujinx.Input/MouseStateSnapshot.cs
index ddfdebc6..9efc9f9c 100644
--- a/src/Ryujinx.Input/MouseStateSnapshot.cs
+++ b/src/Ryujinx.Input/MouseStateSnapshot.cs
@@ -8,7 +8,7 @@ namespace Ryujinx.Input
/// </summary>
public class MouseStateSnapshot
{
- private bool[] _buttonState;
+ private readonly bool[] _buttonState;
/// <summary>
/// The position of the mouse cursor
@@ -31,7 +31,7 @@ namespace Ryujinx.Input
_buttonState = buttonState;
Position = position;
- Scroll = scroll;
+ Scroll = scroll;
}
/// <summary>
@@ -42,4 +42,4 @@ namespace Ryujinx.Input
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public bool IsPressed(MouseButton button) => _buttonState[(int)button];
}
-} \ No newline at end of file
+}