Skip to content

Commit

Permalink
Move message about missing normal maps to infostream instead of error…
Browse files Browse the repository at this point in the history
…stream.
  • Loading branch information
RealBadAngel committed May 5, 2014
1 parent 6f511b1 commit c80d67f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/tile.cpp
Expand Up @@ -973,13 +973,19 @@ bool TextureSource::generateImage(std::string part_of_name, video::IImage *& bas
}
}

if(image == NULL)
{
if(part_of_name != ""){
errorstream<<"generateImage(): Could not load image \""
if (image == NULL) {
if (part_of_name != "") {
if (part_of_name.find("_normal.png") == std::string::npos){
errorstream<<"generateImage(): Could not load image \""
<<part_of_name<<"\""<<" while building texture"<<std::endl;
errorstream<<"generateImage(): Creating a dummy"
errorstream<<"generateImage(): Creating a dummy"
<<" image for \""<<part_of_name<<"\""<<std::endl;
} else {
infostream<<"generateImage(): Could not load normal map \""
<<part_of_name<<"\""<<std::endl;
infostream<<"generateImage(): Creating a dummy"
<<" normal map for \""<<part_of_name<<"\""<<std::endl;
}
}

// Just create a dummy image
Expand Down

0 comments on commit c80d67f

Please sign in to comment.