pull/36/head
Christopher Young 2015-09-11 18:27:26 -04:00
rodzic 8d312f8d1f
commit e13ba80f17
1 zmienionych plików z 3 dodań i 4 usunięć

Wyświetl plik

@ -4,12 +4,11 @@ import (
"bufio"
"fmt"
"os"
"time"
"strconv"
"strings"
"time"
)
func main() {
if len(os.Args) < 2 {
fmt.Printf("%s <replay log>\n", os.Args[0])
@ -41,8 +40,8 @@ func main() {
}
thisWait := i - curTick
time.Sleep(time.Duration(thisWait) * time.Nanosecond) // Just in case the units change.
fmt.Printf("%s\n", linesplit[1])
fmt.Printf("%s", linesplit[1])
curTick = i
}
}
}
}