Skip to content
Snippets Groups Projects
Commit 79799840 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

disable tiling of textures only if smooth lighting is used

parent b21c7de3
No related branches found
No related tags found
No related merge requests found
......@@ -468,7 +468,12 @@ void updateFastFaceRow(
end_of_texture = true;
}
end_of_texture = true; //DEBUG
// Do this to disable tiling textures
//end_of_texture = true; //DEBUG
// Disable tiling of textures if smooth lighting is used
if(smooth_lighting)
end_of_texture = true;
if(next_is_different || end_of_texture)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment