Skip to content

Commit

Permalink
snapshot 24w28a
Browse files Browse the repository at this point in the history
  • Loading branch information
PeytonPlayz595 committed Jul 8, 2024
1 parent 204b255 commit 2bb5103
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class EaglercraftVersion {
//Client name (Shadow)
public static final String projectForkName = new String(new byte[] {83, 104, 97, 100, 111, 119 });
//Build version (number + snapshot/official)
public static final String projectForkVersion = new String(new byte[] {52, 46, 53, 32, 115, 110, 97, 112, 115, 104, 111, 116, 45, 50, 52, 119, 50, 55, 97 });
public static final String projectForkVersion = new String(new byte[] {52, 46, 53, 32, 115, 110, 97, 112, 115, 104, 111, 116, 45, 50, 52, 119, 50, 56, 97 });
//Author name (PeytonPlayz585)
public static final String projectForkVendor = new String(new byte[] {80, 101, 121, 116, 111, 110, 80, 108, 97, 121, 122, 53, 56, 53 });

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,9 @@ private static float func_181665_a(FloatBuffer parFloatBuffer, float parFloat1,
* SLOW AND STUPID COMPANION FUNCTION TO 'func_181672_a'
*/
public void setVertexState(WorldRenderer.State state) {
this.grow(state.getRawBuffer().length);
PlatformBufferFunctions.put(this.intBuffer, 0, state.getRawBuffer());
int[] rawBuffer = state.getRawBuffer();
this.grow(rawBuffer.length);
PlatformBufferFunctions.put(this.intBuffer, 0, rawBuffer);
this.vertexCount = state.getVertexCount();
this.vertexFormat = state.getVertexFormat();
}
Expand Down

0 comments on commit 2bb5103

Please sign in to comment.