summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2021-05-04 08:28:23 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2021-05-04 08:31:06 -0400
commit82bcd2f1ea1255b047f33a866c3323a512545506 (patch)
tree2ff3d9871ca68bc3ed29e9d49c6703e24874c41b
parent234e2e23b0e977ff9fed415846e9796332cb0759 (diff)
game: Remove setters for channel and ring buffer slots.
-rw-r--r--test-subject/game.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-subject/game.scm b/test-subject/game.scm
index b7dc1af..5002823 100644
--- a/test-subject/game.scm
+++ b/test-subject/game.scm
@@ -43,10 +43,10 @@
(friendship #:accessor friendship #:init-value 0)
(cartridge #:accessor cartridge #:init-value 'in-fridge)
(dialog-container #:accessor dialog-container)
- (click-channel #:accessor click-channel #:init-thunk make-channel)
+ (click-channel #:getter click-channel #:init-thunk make-channel)
(terminal-locked? #:accessor terminal-locked? #:init-value #t)
- (terminal-channel #:accessor terminal-channel #:init-thunk make-channel)
- (terminal-lines #:accessor terminal-lines #:init-form (make-ring-buffer 17))
+ (terminal-channel #:getter terminal-channel #:init-thunk make-channel)
+ (terminal-lines #:getter terminal-lines #:init-form (make-ring-buffer 17))
(key-pad-locked? #:accessor key-pad-locked? #:init-value #t))
(define-method (subject-name (game <game>))