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

Comparing deliantra/server/random_maps/random_map.C (file contents):
Revision 1.52 by root, Sat Jun 26 23:53:31 2010 UTC vs.
Revision 1.53 by root, Sun Jun 27 20:40:54 2010 UTC

59Layout::print () 59Layout::print ()
60{ 60{
61 for (int j = 0; j < ptr->h; j++) 61 for (int j = 0; j < ptr->h; j++)
62 { 62 {
63 for (int i = 0; i < ptr->w; i++) 63 for (int i = 0; i < ptr->w; i++)
64 {
65 putc (ptr->col[i][j] ? ptr->col[i][j] : ' ', stdout); 64 putc (ptr->col[i][j] ? ptr->col[i][j] : ' ', stdout);
66 putc (ptr->col[i][j] ? ptr->col[i][j] : ' ', stdout);
67 }
68 65
69 putc ('\n', stdout); 66 putc ('\n', stdout);
70 } 67 }
71 68
72 putc ('\n', stdout); 69 putc ('\n', stdout);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines