Small bugfix in Stitcher that was preventing ti from fully filling the possible texture space. Should lower the amount of empty space in textures.

This commit is contained in:
LexManos 2013-04-07 21:44:46 -07:00 committed by Christian
parent 2de6f297e1
commit dc047fcb7a
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- ../src_base/minecraft/net/minecraft/client/renderer/texture/Stitcher.java
+++ ../src_work/minecraft/net/minecraft/client/renderer/texture/Stitcher.java
@@ -182,7 +182,7 @@
if (flag4 ^ flag5)
{
- flag1 = flag4 && flag2;
+ flag1 = flag5 && flag3; //Forge: Bug fix: Attempt to fill all downward space before expanding width
}
else
{