Fix: bestRecord bug

This commit is contained in:
2018-06-06 07:34:45 +09:00
parent b4f0531db0
commit 26b47536dc
7 changed files with 29 additions and 12 deletions
+2 -1
View File
@@ -64,7 +64,8 @@ class ScreenBottom {
}
printBottomLeftTextWithBestRecord(bestRecord) {
this.printBottomLeftText("오늘의 최고 기록 : " + bestRecord);
let highScoreWithCommas = NumberUtil.numberWithCommas(bestRecord);
this.printBottomLeftText("오늘의 최고 기록 : " + highScoreWithCommas);
}
}