Skip to content

Commit

Permalink
Compress gameplay samples
Browse files Browse the repository at this point in the history
Feodor0090 committed Jun 21, 2023
1 parent eb3fa0f commit 5f77039
Showing 5 changed files with 2 additions and 2 deletions.
Binary file added res/sfx/applause.mp3
Binary file not shown.
Binary file removed res/sfx/applause.wav
Binary file not shown.
Binary file added res/sfx/restart.mp3
Binary file not shown.
Binary file removed res/sfx/restart.wav
Binary file not shown.
4 changes: 2 additions & 2 deletions src/nmania/Player.java
Original file line number Diff line number Diff line change
@@ -173,9 +173,9 @@ public Player(Beatmap map, PlayerBootstrapData opts, Skin s, ILogger log, Displa
if (Settings.useBmsSamples && (sn = map.set.findFile("applause")) != null) {
applause = map.ToGlobalPath(sn);
} else {
applause = "/sfx/applause.wav";
applause = "/sfx/applause.mp3";
}
restart = new Sample("/sfx/restart.wav", "audio/wav");
restart = new Sample("/sfx/restart.mp3", "audio/mpeg");
} else {
combobreak = null;
sectionPass = null;

0 comments on commit 5f77039

Please sign in to comment.