Skip to content

Commit

Permalink
#208 being deferred so reverted fix to preserve SACOG and Fresno
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterVermont committed Feb 9, 2019
1 parent d5de161 commit 6da93f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DaySim.Framework/Roster/OMXSkimFileReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public class OMXSkimFileReader : ISkimFileReader {
value = ushort.MaxValue - 1;
}

_matrix[mappedRow][mappedCol] = Convert.ToUInt16(value);
_matrix[mappedRow][mappedCol] = (ushort)value; //bug #208 deferred but this will eventually changed be Convert.ToUInt16 to avoid 0.57*100=56 bug
}
}
}
Expand Down

0 comments on commit 6da93f9

Please sign in to comment.