Save replays in a new thread.
Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
parent
712cf30e01
commit
c53679fe63
|
@ -230,8 +230,11 @@ public class Replay {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// write file
|
// write file in new thread
|
||||||
File file = new File(dir, String.format("%s.osr", getReplayFilename()));
|
final File file = new File(dir, String.format("%s.osr", getReplayFilename()));
|
||||||
|
new Thread() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
try (FileOutputStream out = new FileOutputStream(file)) {
|
try (FileOutputStream out = new FileOutputStream(file)) {
|
||||||
OsuWriter writer = new OsuWriter(out);
|
OsuWriter writer = new OsuWriter(out);
|
||||||
|
|
||||||
|
@ -309,6 +312,8 @@ public class Replay {
|
||||||
ErrorHandler.error("Could not save replay data.", e, true);
|
ErrorHandler.error("Could not save replay data.", e, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}.start();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the file name of where the replay should be saved and loaded,
|
* Returns the file name of where the replay should be saved and loaded,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user