Skip to content

Commit

Permalink
[MouseWithoutBorders] - made some Core\MachineStuff.cs members privat…
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeclayton committed Jan 11, 2025
1 parent beb2f88 commit 0e50e61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/MouseWithoutBorders/App/Core/MachineStuff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal static class MachineStuff
private static readonly Lock McMatrixLock = new();

internal const byte MAX_MACHINE = 4;
internal const byte MAX_SOCKET = MAX_MACHINE * 2;
private const byte MAX_SOCKET = MAX_MACHINE * 2;
internal const long HEARTBEAT_TIMEOUT = 1500000; // 30 Mins
private const int SKIP_PIXELS = 1;
private const int JUMP_PIXELS = 2;
Expand All @@ -38,9 +38,9 @@ internal static class MachineStuff
#pragma warning restore SA1307
internal static string DesMachineName = string.Empty;
#pragma warning disable SA1307 // Accessible fields should begin with upper-case letter
internal static ID newDesMachineID;
internal static ID newDesMachineIdEx;
internal static ID dropMachineID;
private static ID newDesMachineID;
private static ID newDesMachineIdEx;
private static ID dropMachineID;
#pragma warning restore SA1307

private static long lastJump = Common.GetTick();
Expand Down

0 comments on commit 0e50e61

Please sign in to comment.