diff --git a/src/game.js b/src/game.js index eba2fd4..3f7ff3d 100644 --- a/src/game.js +++ b/src/game.js @@ -111,7 +111,7 @@ class Game { * */ const isHorizontalOverlap = marioRect.left < obstacleRect.right && // 마리오가 장애물 오른쪽에서 겹치는 경우 검사 - marioRect.right > obstacleRect.left; // 마리오가 장애믈 왼쪽에서 겹치는 경우 검사 + marioRect.right > obstacleRect.left; // 마리오가 장애물 왼쪽에서 겹치는 경우 검사 const isVerticalOverlap = marioRect.top < obstacleRect.bottom && // 마리오가 장애물 아래에서 겹치는 경우 검사 diff --git a/src/score.js b/src/score.js index 497934a..d67e8f8 100644 --- a/src/score.js +++ b/src/score.js @@ -30,7 +30,7 @@ class Score { } updateDialogScore() { - DomManager.dialogScore.textContent = String(this.score.score); + DomManager.dialogScore.textContent = String(this.score); } updateDisplay() {