OSDN Git Service

"varid" -> "valid".
authornothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Wed, 21 Jul 2004 14:01:55 +0000 (14:01 +0000)
committernothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Wed, 21 Jul 2004 14:01:55 +0000 (14:01 +0000)
src/rooms.c

index 7af2732..2e8f338 100644 (file)
@@ -359,14 +359,14 @@ static bool find_space(int *y, int *x, int height, int width)
        /* Initiallize */
        candidates = 0;
 
-       /* Count the number of varid places */
+       /* Count the number of valid places */
        for (block_y = dun->row_rooms - blocks_high; block_y >= 0; block_y--)
        {
                for (block_x = dun->col_rooms - blocks_wide; block_x >= 0; block_x--)
                {
                        if (find_space_aux(blocks_high, blocks_wide, block_y, block_x))
                        {
-                               /* Find a varid place */
+                               /* Find a valid place */
                                candidates++;
                        }
                }