回答編集履歴
1
ばぐ
answer
CHANGED
@@ -105,6 +105,7 @@
|
|
105
105
|
|
106
106
|
if (player != null) player.close();
|
107
107
|
files.clear();
|
108
|
+
img = null;
|
108
109
|
|
109
110
|
for (File file : selection.listFiles()) {
|
110
111
|
if (!file.isFile()) continue;
|
@@ -116,8 +117,6 @@
|
|
116
117
|
|
117
118
|
if (file.getName().equals("Folder.jpg")) {
|
118
119
|
img = loadImage(file.getAbsolutePath()); // アルバムアート
|
119
|
-
} else {
|
120
|
-
img = null;
|
121
120
|
}
|
122
121
|
}
|
123
122
|
|