ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/decor.C
(Generate patch)

Comparing deliantra/server/random_maps/decor.C (file contents):
Revision 1.5 by root, Tue Dec 12 21:39:56 2006 UTC vs.
Revision 1.7 by root, Sat Dec 30 18:45:28 2006 UTC

34obj_count_in_map (maptile *map, int x, int y) 34obj_count_in_map (maptile *map, int x, int y)
35{ 35{
36 int count = 0; 36 int count = 0;
37 object *tmp; 37 object *tmp;
38 38
39 for (tmp = get_map_ob (map, x, y); tmp != NULL; tmp = tmp->above) 39 for (tmp = GET_MAP_OB (map, x, y); tmp != NULL; tmp = tmp->above)
40 count++; 40 count++;
41 return count; 41 return count;
42} 42}
43 43
44/* put the decor into the map. Right now, it's very primitive. */ 44/* put the decor into the map. Right now, it's very primitive. */
45 45
46void 46void
47put_decor (maptile *map, char **maze, char *decorstyle, int decor_option, RMParms * RP) 47put_decor (maptile *map, char **maze, char *decorstyle, int decor_option, random_map_params * RP)
48{ 48{
49 maptile *decor_map; 49 maptile *decor_map;
50 char style_name[256]; 50 char style_name[256];
51 51
52 sprintf (style_name, "/styles/decorstyles"); 52 sprintf (style_name, "/styles/decorstyles");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines