home · contact · privacy
Applied new indentation rule to draw_map_objects().
authorChristian Heller <c.heller@plomlompom.de>
Mon, 29 Jul 2013 01:00:43 +0000 (03:00 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 29 Jul 2013 01:00:43 +0000 (03:00 +0200)
src/draw_wins.c

index 81cc26138efe8406727215bbf98e48506d5c3167..b6d13c21e5e14d54fef8f49e85d9f9601f43d706 100644 (file)
@@ -247,20 +247,20 @@ extern void draw_keys_win(struct Win * win)
 static void draw_map_objects(struct World * world, struct MapObj * start,
                              struct Map * map, struct Win * win)
 {
-  struct MapObj * o;
-  struct MapObjDef * d;
-  char c;
-  for (o = start; o != 0; o = o->next)
-  {
-    if (   o->pos.y >= map->offset.y
-        && o->pos.y < map->offset.y + win->frame.size.y
-        && o->pos.x >= map->offset.x
-        && o->pos.x < map->offset.x + win->frame.size.x)
+    struct MapObj * o;
+    struct MapObjDef * d;
+    char c;
+    for (o = start; o != 0; o = o->next)
     {
-      d = get_map_obj_def (world, o->type);
-      c = d->mapchar;
-      mvwaddch(win->frame.curses_win,
-               o->pos.y - map->offset.y, o->pos.x - map->offset.x, c);
+        if (   o->pos.y >= map->offset.y
+            && o->pos.y < map->offset.y + win->frame.size.y
+            && o->pos.x >= map->offset.x
+            && o->pos.x < map->offset.x + win->frame.size.x)
+        {
+            d = get_map_obj_def (world, o->type);
+            c = d->mapchar;
+            mvwaddch(win->frame.curses_win,
+                     o->pos.y - map->offset.y, o->pos.x - map->offset.x, c);
+        }
     }
-  }
 }