diff --git a/CREDITS.md b/CREDITS.md index 60a41f41..d528d86e 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -32,6 +32,5 @@ The following projects were referenced in creating opsu!: Theme Song ---------- -Rainbows - Kevin MacLeod (incompetech.com) -Licensed under Creative Commons: By Attribution 3.0 License -http://creativecommons.org/licenses/by/3.0/ +The theme song is "On the Bach" by Jingle Punks, from the [YouTube Audio Library] +(https://www.youtube.com/audiolibrary/music). diff --git a/res/theme.mp3 b/res/theme.mp3 deleted file mode 100644 index b75ad2bf..00000000 Binary files a/res/theme.mp3 and /dev/null differ diff --git a/res/theme.ogg b/res/theme.ogg new file mode 100644 index 00000000..8057f70d Binary files /dev/null and b/res/theme.ogg differ diff --git a/src/yugecin/opsudance/options/Configuration.java b/src/yugecin/opsudance/options/Configuration.java index d61fdebc..989d99fc 100644 --- a/src/yugecin/opsudance/options/Configuration.java +++ b/src/yugecin/opsudance/options/Configuration.java @@ -97,14 +97,14 @@ public class Configuration { private Beatmap createThemeBeatmap() { try { - String[] tokens = {"theme.mp3", "Rainbows", "Kevin MacLeod", "219350"}; + String[] tokens = {"theme.ogg", "On the Bach", "Jingle Punks", "66000"}; Beatmap beatmap = new Beatmap(null); beatmap.audioFilename = new File(tokens[0]); beatmap.title = tokens[1]; beatmap.artist = tokens[2]; beatmap.endTime = Integer.parseInt(tokens[3]); beatmap.timingPoints = new ArrayList<>(1); - beatmap.timingPoints.add(new TimingPoint("1080,545.454545454545,4,1,0,100,0,0")); + beatmap.timingPoints.add(new TimingPoint("-44,631.578947368421,4,1,0,100,1,0")); return beatmap; } catch (Exception e) { return null;