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:
parent
2de6f297e1
commit
dc047fcb7a
1 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
{
|
Loading…
Reference in a new issue