Add TextureManager to loading screen.
This commit is contained in:
parent
4235ca36ea
commit
e519278888
1 changed files with 18 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
||||||
|
--- ../src-base/minecraft/net/minecraft/client/renderer/texture/TextureManager.java
|
||||||
|
+++ ../src-work/minecraft/net/minecraft/client/renderer/texture/TextureManager.java
|
||||||
|
@@ -162,12 +162,15 @@
|
||||||
|
|
||||||
|
public void func_110549_a(IResourceManager p_110549_1_)
|
||||||
|
{
|
||||||
|
+ cpw.mods.fml.common.ProgressManager.ProgressBar bar = cpw.mods.fml.common.ProgressManager.push("Reloading Texture Manager", this.field_110585_a.keySet().size(), true);
|
||||||
|
Iterator iterator = this.field_110585_a.entrySet().iterator();
|
||||||
|
|
||||||
|
while (iterator.hasNext())
|
||||||
|
{
|
||||||
|
Entry entry = (Entry)iterator.next();
|
||||||
|
+ bar.step(entry.getKey().toString());
|
||||||
|
this.func_110579_a((ResourceLocation)entry.getKey(), (ITextureObject)entry.getValue());
|
||||||
|
}
|
||||||
|
+ cpw.mods.fml.common.ProgressManager.pop(bar);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue