summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>))