tile: don't duplicate std::string::find_last_of

master
Jonathan Neuschäfer 2012-02-08 11:49:22 +01:00
parent 496451c164
commit abab3db23d
1 changed files with 3 additions and 9 deletions

View File

@ -1023,15 +1023,9 @@ video::IImage* generate_image_from_scratch(std::string name,
char separator = '^';
// Find last meta separator in name
s32 last_separator_position = -1;
for(s32 i=name.size()-1; i>=0; i--)
{
if(name[i] == separator)
{
last_separator_position = i;
break;
}
}
s32 last_separator_position = name.find_last_of(separator);
//if(last_separator_position == std::npos)
// last_separator_position = -1;
/*infostream<<"generate_image_from_scratch(): "
<<"last_separator_position="<<last_separator_position