Fix: best record display, replay button

This commit is contained in:
2018-06-22 20:59:00 +09:00
parent 2d4c3af9e0
commit e05275073a
2 changed files with 13 additions and 6 deletions
+2 -1
View File
@@ -64,7 +64,8 @@ class ScreenBottom {
}
printBottomLeftTextWithBestRecord(bestRecord) {
let highScoreWithCommas = NumberUtil.numberWithCommas(bestRecord);
let roundUpBestRecord = Math.round(bestRecord);
let highScoreWithCommas = NumberUtil.numberWithCommas(roundUpBestRecord);
this.printBottomLeftText("오늘의 최고 기록 : " + highScoreWithCommas);
}