Commit f355a7bb authored by nanahira's avatar nanahira

fix

parent 2eb9d931
......@@ -347,15 +347,19 @@ class ParseOsu{
switch (type) {
case "don":
type = "ka";
txt = strings.note.ka;
break;
case "ka":
type = "don";
txt = strings.note.don;
break;
case "daiDon":
type = "daiKa";
txt = strings.note.daiKa;
break;
case "daiKa":
type = "daiDon";
txt = strings.note.daiDon;
break;
default:
break;
......
......@@ -223,15 +223,19 @@
switch (note.type) {
case "don":
note.type = "ka";
note.txt = strings.note.ka;
break;
case "ka":
note.type = "don";
note.txt = strings.note.don;
break;
case "daiDon":
note.type = "daiKa";
note.txt = strings.note.daiKa;
break;
case "daiKa":
note.type = "daiDon";
note.txt = strings.note.daiDon;
break;
default:
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment