Commit f765a408 authored by faa's avatar faa

cvpcb: russian GOST windows bug fix

parent ce4d22f0
...@@ -253,7 +253,7 @@ int WinEDA_CvpcbFrame::ReadSchematicNetlist() ...@@ -253,7 +253,7 @@ int WinEDA_CvpcbFrame::ReadSchematicNetlist()
for( ; ; i++ ) for( ; ; i++ )
{ {
#if defined(KICAD_GOST) #if defined(KICAD_GOST)
if( (Line[i] == ' ') || (Line[i] == '\n') ) if( (Line[i] == ' ') || (Line[i] == '\n') || (Line[i] == '\r') )
#else #else
if( Line[i] <= ' ' ) if( Line[i] <= ' ' )
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment