Skip to content

Commit d93f8a6

Browse files
authored
Merge pull request #2237 from gforney/master
smokeview source: corrrection to bounds computation for boundary file…
2 parents fa595cb + f298420 commit d93f8a6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Source/smokeview/getdatabounds.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,8 +1111,10 @@ void GetGlobalPatchBounds(int flag, int set_flag, char *label){
11111111
if(doit==1){
11121112
#ifdef pp_BOUNDFRAME
11131113
if(patchi->frameinfo != NULL){
1114-
valmin = patchi->frameinfo->valmin;
1115-
valmax = patchi->frameinfo->valmax;
1114+
//*** comment these lines for now
1115+
// valmin = patchi->frameinfo->valmin;
1116+
// valmax = patchi->frameinfo->valmax;
1117+
BoundsGet(patchi->reg_file, patchglobalboundsinfo, sorted_patch_filenames, global_scase.npatchinfo, 1, &valmin, &valmax);
11161118
}
11171119
else{
11181120
BoundsGet(patchi->reg_file, patchglobalboundsinfo, sorted_patch_filenames, global_scase.npatchinfo, 1, &valmin, &valmax);

0 commit comments

Comments
 (0)