Cleaned up Packet checking in ReplaySender

Removed broken Time Keyframe functionality to create a stable build
This commit is contained in:
Marius Metzger
2015-01-09 21:33:33 +01:00
parent f9ce92dc98
commit 25c4f85a4c
4 changed files with 36 additions and 74 deletions

View File

@@ -230,9 +230,9 @@ public class ReplayHandler {
selectKeyframe(null);
}
public static void setReplayPos(int pos, boolean force) {
public static void setReplayPos(int pos) {
if(replaySender != null) {
replaySender.jumpToTime(pos, force);
replaySender.jumpToTime(pos);
}
}