Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatMG393 committed Jan 17, 2025
1 parent 3918e93 commit d5136e7
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ public Framebuffer(Builder builder) {

}





@lombok.Builder
public static class Builder {
private int width, height;
Expand All @@ -20,6 +16,6 @@ public static class Builder {
private int colorAttachment;

@lombok.Builder.Default
private Vector4f clearColor = new Vector4f(1.0, 1.0, 1.0, 0.0);
private Vector4f clearColor = new Vector4f(1.0f, 1.0f, 1.0f, 0.0f);
}
}

0 comments on commit d5136e7

Please sign in to comment.