Skip to content

Commit

Permalink
fix : slob dictionary name assignment is not correct
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyifang committed May 17, 2022
1 parent 2eccf7a commit e6b97ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slob.cc
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ string SlobDictionary::convert( const string & in, RefEntry const & entry )
|| list[ 1 ].endsWith( " tex" ) )
{
QString name;
name.asprintf( "%04X%04X%04X.gif", entry.itemIndex, entry.binIndex, texCount );
name = name.asprintf( "%04X%04X%04X.gif", entry.itemIndex, entry.binIndex, texCount );
imgName = texCachePath + "/" + name;

if( !QFileInfo( imgName ).exists() )
Expand Down

0 comments on commit e6b97ed

Please sign in to comment.