Fix 3D model file name parsing bug. (fixes lp:1609122)

This commit is contained in:
Cirilo Bernardo 2016-08-03 13:39:39 -04:00 committed by Wayne Stambaugh
parent c9a41be774
commit 8fdd6b1627
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ S3D_INFO* PCB_PARSER::parse3DModel() throw( PARSE_ERROR, IO_ERROR )
S3D_INFO* n3D = new S3D_INFO;
NeedSYMBOLorNUMBER();
n3D->m_Filename = FromUTF8().ToUTF8();
n3D->m_Filename = FromUTF8();
for( token = NextTok(); token != T_RIGHT; token = NextTok() )
{