Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
Smaller logo
Browse files Browse the repository at this point in the history
  • Loading branch information
CiroZDP committed Sep 9, 2024
1 parent 2dffc06 commit e78942c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/net/opencraft/renderer/screens/Loadscreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ private void staticLS(Graphics2D g2d) {

BufferedImage loadingLogo = oc.assets.getLoadingLogo();
{
final int width = loadingLogo.getWidth() * 2;
final int height = loadingLogo.getHeight() * 2;
final int width = (int) (loadingLogo.getWidth() * 1.5f);
final int height = (int) (loadingLogo.getHeight() * 1.5f);

int logoX = (854 - width) / 2;
int logoY = (480 - height) / 2;
int logoY = (480 - height) / 2 - 27;

g2d.drawImage(loadingLogo, logoX, logoY, width, height, null);
}
Expand Down

0 comments on commit e78942c

Please sign in to comment.