Skip to content

Commit

Permalink
fix(launcher): Fix splash screen
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartram committed Nov 21, 2024
1 parent 7c8e843 commit 6de187a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
}

group = 'com.kraken'
version = '1.0.2'
version = '1.0.3'

tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/krakenlauncher/SplashScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private SplashScreen() throws IOException {
setTitle("Kraken Launcher");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setUndecorated(true);
BufferedImage logo = loadImageResource(KrakenLauncher.class, "/com/krakenlauncher/images/kraken.png");
BufferedImage logo = loadImageResource(KrakenLauncher.class, "/com/kraken/images/kraken.png");
logo = resizeImage(logo, 128, 128, false);
setIconImage(logo);

Expand Down

0 comments on commit 6de187a

Please sign in to comment.