FogManager OK

This commit is contained in:
robojumper
2025-03-24 00:25:00 +01:00
parent 178af0c42b
commit 263813895a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -877,7 +877,7 @@ config.libs = [
Object(NonMatching, "egg/gfx/eggDrawPathDOF.cpp"),
Object(Matching, "egg/gfx/eggDrawPathLightMap.cpp"),
Object(NonMatching, "egg/gfx/eggFog.cpp"),
Object(NonMatching, "egg/gfx/eggFogManager.cpp"),
Object(Matching, "egg/gfx/eggFogManager.cpp"),
Object(NonMatching, "egg/gfx/eggFrustum.cpp"),
Object(NonMatching, "egg/gfx/eggG3DUtility.cpp"),
Object(NonMatching, "egg/gfx/eggGfxEngine.cpp"),
+1 -1
View File
@@ -6,7 +6,7 @@
namespace EGG {
FogManager::FogManager(u16 num) : mFlag(0), mCount(num), mCount2(num) {
FogManager::FogManager(const u16 num) : mFlag(0), mCount(num), mCount2(num) {
mpFog = new Fog[num];
}