Corrected Spice vector name for voltages

This commit is contained in:
Maciej Suminski 2016-08-11 14:41:53 +02:00
parent 114e3638e7
commit 806b862a5e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ wxString NETLIST_EXPORTER_PSPICE_SIM::GetSpiceVector( const wxString& aName, SIM
if( it == netMapping.end() ) if( it == netMapping.end() )
return ""; return "";
return wxString::Format( "v(%d)", it->second ); return wxString::Format( "V(%d)", it->second );
} }