Bump version string and get rid of shitass texture

master
PF94 2020-11-23 23:19:22 -05:00
parent f30765bc14
commit 6fceee59c4
2 changed files with 4 additions and 4 deletions

View File

@ -238,7 +238,7 @@ public class Minecraft implements Runnable, LevelLoaderListener
}
catch (Exception e) {
e.printStackTrace();
JOptionPane.showMessageDialog(null, e.toString(), "Failed to start Minecraft", 0);
JOptionPane.showMessageDialog(null, e.toString(), "Failed to start MinecraftGRPF", 0);
return;
}
long lastTime = System.currentTimeMillis();
@ -636,9 +636,9 @@ public class Minecraft implements Runnable, LevelLoaderListener
GL11.glDisable(3553);
GL11.glPopMatrix();
this.checkGlError("GUI: Draw selected");
this.font.drawShadow("MinecraftGRPF 0.1.0a", 2, 2, 16777215);
this.font.drawShadow("MinecraftGRPF 0.1.0b", 2, 2, 16777215);
this.font.drawShadow(this.fpsString, 2, 12, 16777215);
//this.font.drawShadow("Test version", 2, 22, 16777215);
this.font.drawShadow("Test version", 2, 22, 16777215);
this.checkGlError("GUI: Draw text");
final int wc = screenWidth / 2;
final int hc = screenHeight / 2;

View File

@ -65,7 +65,7 @@ public class Zombie extends Entity
@Override
public void render(final float a) {
GL11.glEnable(3553);
GL11.glBindTexture(3553, this.textures.loadTexture("/shitass.png", 9728));
GL11.glBindTexture(3553, this.textures.loadTexture("/char.png", 9728));
GL11.glPushMatrix();
final double time = System.nanoTime() / 1.0E9 * 10.0 * this.speed + this.timeOffs;
final float size = 0.058333334f;