Crashes when Logic Analyser is activates
Brought to you by:
steven777400
When I activate the logic analyser, Logiv Gate Simulator crashes.
By the way, very cool interface. Lacks some feature found on competing programs such as gate rotation, advanced gates such as flip-flops, 7-segment, RAM, etc...
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Its a bug in "ChartLine.xaml.cs" and "TickRuler.xaml.cs" files, method GenLine()
The bug is culture-specific and occurs when double to string conversion is applied and incorrect NumberFormat is used for path string.
My quick fix was o force culture to en-US, like this:
NumberFormatInfo nfi = new CultureInfo("en-US", false).NumberFormat;
and use it in all ToString calls : .ToString("G", nfi)