Fix finder / other converted song names.
This commit is contained in:
parent
4a64196d70
commit
3c10a63ac9
BIN
image.png
BIN
image.png
Binary file not shown.
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.0 MiB |
@ -146,23 +146,31 @@ public class DemoApplication {
|
||||
}
|
||||
|
||||
public static String getCorrectSongName(String song) {
|
||||
switch (song.toLowerCase()) {
|
||||
switch (song.toLowerCase()) {
|
||||
/***************
|
||||
*
|
||||
*
|
||||
* THIS IS USING TO LOWER CASE!
|
||||
* USE LOWERCASE!!!
|
||||
*
|
||||
*
|
||||
*****************/
|
||||
case "pianogirl":{
|
||||
return "PIANO*GIRL";
|
||||
}
|
||||
case "16 -out of the gravity-":{
|
||||
return "1/6 -out of the gravity-";
|
||||
}
|
||||
case "ファインダー (DSLR remix - reedit)":{
|
||||
case "ファインダー (dslr remix - reedit)":{
|
||||
return "ファインダー (DSLR remix - re:edit)";
|
||||
}
|
||||
case "恋ノート":{
|
||||
return "恋ノート////";
|
||||
}
|
||||
case "Equation+":{
|
||||
case "equation+":{
|
||||
return "Equation+**";
|
||||
}
|
||||
case "雨のちSweetDrops":{
|
||||
case "雨のちsweetdrops":{
|
||||
return "雨のちSweet*Drops";
|
||||
}
|
||||
|
||||
|
@ -10,6 +10,7 @@ public class SongData {
|
||||
String[] split = parseStr.split(":");
|
||||
song = split[0];
|
||||
song = DemoApplication.getCorrectSongName(song);
|
||||
System.out.println(song);
|
||||
String[] colors = split[1].split(",");
|
||||
data = new Color[colors.length];
|
||||
for (int i=0;i<colors.length;i++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user