Skip to content

Commit 6c0d379

Browse files
SimonC4Cervator
authored andcommitted
Quick fix for issue where the distZip build wouldn't start.
1 parent 060c7e7 commit 6c0d379

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main/src/com/miloshpetrov/sol2/DevTextureProvider.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ public class DevTextureProvider implements TextureProvider {
1616
private final Texture myMissingTex;
1717

1818
DevTextureProvider() {
19-
FileHandle missingFile = FileManager.getInstance().getStaticFile("imgSrcs/smallGameObjs/missing.png");
20-
myMissingTex = new Texture(missingFile);
19+
//FileHandle missingFile = FileManager.getInstance().getStaticFile("imgSrcs/smallGameObjs/missing.png");
20+
//myMissingTex = new Texture(missingFile);
21+
myMissingTex = null;
2122
}
2223

2324
@Override

0 commit comments

Comments
 (0)