Skip to content

Commit

Permalink
Clouds.h:
Browse files Browse the repository at this point in the history
* Hopefully fixes some more windows warnings.
  • Loading branch information
razterizer committed Oct 1, 2024
1 parent b3c8130 commit 71f9d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pilot_Episode/Clouds.h
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ void draw_clouds_fg(SpriteHandler<NR, NC>& sh,
draw_cloud_f(cd.cloud_type[6*cloud_idx + 5], sh, cd.cloud_x_pos[cloud_idx], cd.cloud_y_pos[cloud_idx-500], x_pos, y_pos, parallax, ground_level, plane_hull);
}

float num_chars_hidden = std::count_if(plane_hull.begin(), plane_hull.end(), [](const auto& rch)
auto num_chars_hidden = std::count_if(plane_hull.begin(), plane_hull.end(), [](const auto& rch)
{
return std::get<2>(rch);
});
Expand Down

0 comments on commit 71f9d44

Please sign in to comment.