Fixes #28
All checks were successful
Linux arm64 / Build (push) Successful in 41s

This commit is contained in:
2025-02-02 10:35:00 +01:00
parent 06efbf649b
commit 68021b796b
4 changed files with 35 additions and 6 deletions

View File

@@ -32,8 +32,8 @@ public class Images {
return textureID;
}
public static void loadImages() {
BACKGROUND = loadTexture("background.png");
public static void reloadImages() {
BACKGROUND = loadTexture(Options.BackgroundPath);
}
}