Change version string

master
PF94 2020-11-23 21:35:23 -05:00
parent 83e9bc3dff
commit 9cb2659ca9
1 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ import com.mojang.minecraft.level.LevelLoaderListener;
public class Minecraft implements Runnable, LevelLoaderListener
{
public static final String VERSION_STRING = "0.0.13a";
public static final String VERSION_STRING = "0.1.0";
private boolean fullscreen;
public int width;
public int height;
@ -129,7 +129,7 @@ public class Minecraft implements Runnable, LevelLoaderListener
else {
Display.setDisplayMode(new DisplayMode(this.width, this.height));
}
Display.setTitle("MinecraftGRPF 0.0.13a");
Display.setTitle("MinecraftGRPF 0.1.0");
try {
Display.create();
}
@ -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.0.13a", 2, 2, 16777215);
this.font.drawShadow("MinecraftGRPF 0.1.0", 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;