File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,9 +32,7 @@ globals_impl::globals_impl(const story_impl* story)
3232
3333void globals_impl::visit (uint32_t container_id)
3434{
35- _visit_counts.set (
36- container_id, {_visit_counts[container_id].visits + 1 , 0 }
37- );
35+ _visit_counts.set (container_id, {_visit_counts[container_id].visits + 1 , 0 });
3836}
3937
4038uint32_t globals_impl::visits (uint32_t container_id) const
Original file line number Diff line number Diff line change @@ -835,7 +835,7 @@ bool runner_impl::move_to(hash_t path)
835835 // Clear state and move to destination
836836 reset ();
837837 _ptr = _story->instructions ();
838- const bool record_visits = false ;
838+ const bool record_visits = false ;
839839 const bool track_knot_visit = false ;
840840 jump (destination, record_visits, track_knot_visit);
841841
@@ -1256,8 +1256,8 @@ void runner_impl::step()
12561256 const bool record_visits = true ;
12571257 const bool track_knot_visit = ! (flag & CommandFlag::DIVERT_HAS_CONDITION );
12581258 jump (
1259- _story->instructions () + val->get <value_type::divert>(),
1260- record_visits, track_knot_visit
1259+ _story->instructions () + val->get <value_type::divert>(), record_visits,
1260+ track_knot_visit
12611261 );
12621262 inkAssert (_ptr < _story->end (), " Diverted past end of story data!" );
12631263 } break ;
You can’t perform that action at this time.
0 commit comments