Skip to content

Commit

Permalink
smokeview source: fix times in circular tours
Browse files Browse the repository at this point in the history
  • Loading branch information
gforney committed Dec 31, 2024
1 parent 0cb1d12 commit 465e439
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/smokeview/IOtour.c
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,8 @@ void InitCircularTour(tourdata *touri, int nkeyframes, int option){

thisframe=&touri->first_frame;
float tour_tstart, tour_tstop;
GetTourTimeBounds(touri, &tour_tstart, &tour_tstop);
tour_tstart = global_scase.tourcoll.tour_tstart;
tour_tstop = global_scase.tourcoll.tour_tstop;
for(j=0;j<nkeyframes;j++){
if(nkeyframes == 1){
angle_local = 0.0;
Expand Down

0 comments on commit 465e439

Please sign in to comment.