From: krw Date: Sun, 10 Aug 2008 12:23:25 +0000 (+0000) Subject: 'coordiates' -> 'coordinates' from Dawe via tech@. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7bd46331f1b7782c6f9a432c9dfd598cb73fa612;p=openbsd 'coordiates' -> 'coordinates' from Dawe via tech@. --- diff --git a/games/tetris/tetris.h b/games/tetris/tetris.h index bc6646cf9b9..4de192d8e5c 100644 --- a/games/tetris/tetris.h +++ b/games/tetris/tetris.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tetris.h,v 1.9 2003/06/03 03:01:41 millert Exp $ */ +/* $OpenBSD: tetris.h,v 1.10 2008/08/10 12:23:25 krw Exp $ */ /* $NetBSD: tetris.h,v 1.2 1995/04/22 07:42:48 cgd Exp $ */ /*- @@ -75,7 +75,7 @@ extern int Rows, Cols; /* current screen size */ /* * Translations from board coordinates to display coordinates. - * As with board coordinates, display coordiates are zero origin. + * As with board coordinates, display coordinates are zero origin. */ #define RTOD(x) ((x) - 1) #define CTOD(x) ((x) * 2 + (((Cols - 2 * B_COLS) >> 1) - 1))