mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Move message about missing normal maps to infostream instead of errorstream.
This commit is contained in:
		
							
								
								
									
										16
									
								
								src/tile.cpp
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								src/tile.cpp
									
									
									
									
									
								
							@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user