2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-11 22:24:00 +00:00

CPlasmaProjectile: Remove mutable specifier from m_renderObjs

Now that Render() is non-const, this is no longer necessary.
This commit is contained in:
Lioncash
2020-04-09 21:17:17 -04:00
parent 061b7f9a98
commit 1bacb69fc2
2 changed files with 3 additions and 3 deletions

View File

@@ -134,7 +134,7 @@ void CPlasmaProjectile::UpdateEnergyPulse(float dt) {
x51c_pulseGen->Update(dt);
}
void CPlasmaProjectile::RenderMotionBlur() const {
void CPlasmaProjectile::RenderMotionBlur() {
CGraphics::SetModelMatrix({});
zeus::CColor color1 = x494_outerColor;
zeus::CColor color2 = x494_outerColor;