Rename iBadJumper to iWrongSensorJumper.

master
Glenn Maynard 6 years ago
parent 122cbe7b0d
commit 00271c3e15
  1. 6
      smx-config/SMX.cs

@ -282,7 +282,7 @@ namespace SMX
public int[] iDIPSwitchPerPanel; public int[] iDIPSwitchPerPanel;
[MarshalAs(UnmanagedType.ByValArray, ArraySubType=UnmanagedType.I1, SizeConst = 9*4)] [MarshalAs(UnmanagedType.ByValArray, ArraySubType=UnmanagedType.I1, SizeConst = 9*4)]
public bool[] iBadJumper; public bool[] iWrongSensorJumper;
public override bool Equals(object obj) public override bool Equals(object obj)
{ {
@ -292,7 +292,7 @@ namespace SMX
Helpers.SequenceEqual(sensorLevel, other.sensorLevel) && Helpers.SequenceEqual(sensorLevel, other.sensorLevel) &&
Helpers.SequenceEqual(bBadSensorInput, other.bBadSensorInput) && Helpers.SequenceEqual(bBadSensorInput, other.bBadSensorInput) &&
Helpers.SequenceEqual(iDIPSwitchPerPanel, other.iDIPSwitchPerPanel) && Helpers.SequenceEqual(iDIPSwitchPerPanel, other.iDIPSwitchPerPanel) &&
Helpers.SequenceEqual(iBadJumper, other.iBadJumper); Helpers.SequenceEqual(iWrongSensorJumper, other.iWrongSensorJumper);
} }
// Dummy override to silence a bad warning. We don't use these in containers that need // Dummy override to silence a bad warning. We don't use these in containers that need
@ -316,7 +316,7 @@ namespace SMX
if(!bHaveDataFromPanel[panel]) if(!bHaveDataFromPanel[panel])
return false; return false;
for(int sensor = 0; sensor < 4; ++sensor) for(int sensor = 0; sensor < 4; ++sensor)
if(iBadJumper[panel*4+sensor]) if(iWrongSensorJumper[panel*4+sensor])
return true; return true;
return false; return false;

Loading…
Cancel
Save