Fix probably typo, don't cast col/row_step to int
This commit is contained in:
parent
d62bbb2a74
commit
79ea7c6819
1 changed files with 2 additions and 2 deletions
|
@ -446,8 +446,8 @@ TGDem::write_area( const string& root, SGBucket& b ) {
|
|||
}
|
||||
|
||||
gzprintf( fp, "%d %d\n", (int)min_x, (int)min_y );
|
||||
gzprintf( fp, "%d %f %d %f\n", span_x + 1, (int)col_step,
|
||||
span_y + 1, (int)row_step );
|
||||
gzprintf( fp, "%d %f %d %f\n", span_x + 1, col_step,
|
||||
span_y + 1, row_step );
|
||||
for ( int i = start_x; i <= start_x + span_x; ++i ) {
|
||||
for ( int j = start_y; j <= start_y + span_y; ++j ) {
|
||||
gzprintf( fp, "%d ", (int)dem_data[i][j] );
|
||||
|
|
Loading…
Reference in a new issue