2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 15:07:41 +00:00

CFluidPlane: Resolve constness related compile errors that slipped through

Gotta love Find References not, in fact, finding all the references.
This commit is contained in:
Lioncash
2020-04-06 05:29:05 -04:00
parent f0eadfe56c
commit c9e8b3366d
5 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ void CFluidPlaneGPU::RenderStripWithRipples(float curY, const CFluidPlaneRender:
const u8 (&flags)[9][9], int startYDiv,
const CFluidPlaneRender::SPatchInfo& info,
std::vector<CFluidPlaneShader::Vertex>& vOut,
std::vector<CFluidPlaneShader::PatchVertex>& pvOut) const {
std::vector<CFluidPlaneShader::PatchVertex>& pvOut) {
m_shader->bindTessellation();
int yTile = (startYDiv + CFluidPlaneRender::numSubdivisionsInTile - 1) / CFluidPlaneRender::numSubdivisionsInTile;