summaryrefslogtreecommitdiffstats
path: root/dab
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2010-12-08 17:08:07 +0000
committerjoerg <joerg@NetBSD.org>2010-12-08 17:08:07 +0000
commitc75da9da205404a56abd711c3147a8d2296fad97 (patch)
tree75fa0aa3c175a99cf81fd4c268db092c3cf45855 /dab
parent399ca41acac85ca19a46495bbf7690ac56666be0 (diff)
downloadbsdgames-darwin-c75da9da205404a56abd711c3147a8d2296fad97.tar.gz
bsdgames-darwin-c75da9da205404a56abd711c3147a8d2296fad97.tar.zst
bsdgames-darwin-c75da9da205404a56abd711c3147a8d2296fad97.zip
Don't use the same name for two parameters.
Diffstat (limited to 'dab')
-rw-r--r--dab/gamescreen.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dab/gamescreen.h b/dab/gamescreen.h
index ff0b0daa..c52c85bf 100644
--- a/dab/gamescreen.h
+++ b/dab/gamescreen.h
@@ -1,4 +1,4 @@
-/* $NetBSD: gamescreen.h,v 1.2 2008/04/28 20:22:54 martin Exp $ */
+/* $NetBSD: gamescreen.h,v 1.3 2010/12/08 17:08:07 joerg Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -63,9 +63,9 @@ class GAMESCREEN {
virtual void redraw(void) = 0; // Refresh
virtual int getinput(void) = 0; // Get user input
virtual void bell(void) = 0; // Beep
- virtual void score(size_t p, const PLAYER& p) = 0; // Post current score
- virtual void games(size_t p, const PLAYER& p) = 0; // Post games won
- virtual void total(size_t p, const PLAYER& p) = 0; // Post total score
+ virtual void score(size_t l, const PLAYER& p) = 0; // Post current score
+ virtual void games(size_t l, const PLAYER& p) = 0; // Post games won
+ virtual void total(size_t l, const PLAYER& p) = 0; // Post total score
virtual void ties(const PLAYER& p) = 0; // Post tie games
};