OSDN Git Service

1.55、ヌplace_floor_bold()、ネ、キ、ニ、キ、゙、テ、ニ、、、ソノャ、ホス、タオ.
authornothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Wed, 28 May 2003 16:24:28 +0000 (16:24 +0000)
committernothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Wed, 28 May 2003 16:24:28 +0000 (16:24 +0000)
src/generate.c

index 79da35e..e3d6e1c 100644 (file)
@@ -559,15 +559,15 @@ static bool cave_gen(void)
                /* Special boundary walls -- Top and bottom */
                for (x = 0; x < cur_wid; x++)
                {
-                       place_floor_bold(0, x);
-                       place_floor_bold(cur_hgt - 1, x);
+                       place_extra_bold(0, x);
+                       place_extra_bold(cur_hgt - 1, x);
                }
 
                /* Special boundary walls -- Left and right */
                for (y = 1; y < (cur_hgt - 1); y++)
                {
-                       place_floor_bold(y, 0);
-                       place_floor_bold(y, cur_wid - 1);
+                       place_extra_bold(y, 0);
+                       place_extra_bold(y, cur_wid - 1);
                }
        }
        else
@@ -577,7 +577,7 @@ static bool cave_gen(void)
                {
                        for (x = 0; x < cur_wid; x++)
                        {
-                               place_floor_bold(y, x);
+                               place_extra_bold(y, x);
                        }
                }
        }