Skip to content

Commit

Permalink
Rename render-board to render-object-board (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
rexim committed Jan 16, 2016
1 parent cd50cff commit b9a63f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pacmacs.el
Expand Up @@ -671,7 +671,7 @@
(dolist (wall pacmacs--wall-cells)
(pacmacs--put-object wall)))

(defun pacmacs--render-board ()
(defun pacmacs--render-object-board ()
(plist-bind ((width :width)
(height :height))
pacmacs--object-board
Expand All @@ -689,7 +689,7 @@
(when pacmacs-debug-output
(pacmacs--render-track-board pacmacs--track-board))

(pacmacs--render-board)
(pacmacs--render-object-board)

(dotimes (i pacmacs-lives)
(ignore i)
Expand Down Expand Up @@ -755,7 +755,7 @@
(with-current-buffer pacmacs--score-buffer-name
(let ((inhibit-read-only t))
(erase-buffer)
(pacmacs--render-board)
(pacmacs--render-object-board)
(let ((inhibit-read-only t))
(-> (pacmacs--read-score-table)
(pacmacs--render-score-table))))
Expand Down

0 comments on commit b9a63f2

Please sign in to comment.