diff options
author | Treeki <treeki@gmail.com> | 2012-09-23 17:22:44 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-09-23 17:22:44 +0200 |
commit | b9d6e55d5823ec18050ba2bd3c9c968c219dec92 (patch) | |
tree | 8a265e622522d528d9dc9048942147ac152c03d6 /src | |
parent | 7bbcfa56ab06e12181a682227b0481d1f0d9b142 (diff) | |
download | kamek-b9d6e55d5823ec18050ba2bd3c9c968c219dec92.tar.gz kamek-b9d6e55d5823ec18050ba2bd3c9c968c219dec92.zip |
made the world map effects be loaded
Diffstat (limited to '')
-rw-r--r-- | src/koopatlas/core.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/koopatlas/core.cpp b/src/koopatlas/core.cpp index 164ea89..c20d715 100644 --- a/src/koopatlas/core.cpp +++ b/src/koopatlas/core.cpp @@ -46,6 +46,7 @@ dScKoopatlas_c *dScKoopatlas_c::build() { } bool WMInit_StartLoading(void*); +bool StockWMInit_LoadEffects(void*); bool WMInit_LoadSIAnims(void*); bool WMInit_EndLoading(void*); bool WMInit_LoadResources1(void*); @@ -56,6 +57,7 @@ bool WMInit_SetupWipe(void*); ChainedFunc initFunctions[] = { WMInit_StartLoading, + StockWMInit_LoadEffects, WMInit_LoadSIAnims, WMInit_EndLoading, WMInit_LoadResources1, @@ -409,6 +411,11 @@ int dScKoopatlas_c::onDelete() { FreeScene(0); FreeScene(1); + CleanUpEffectThings(); + FreeEffects(1); + FreeBreff(1); + FreeBreft(1); + DVD_FreeFile(GetDVDClass2(), "SI_kinoko"); DVD_FreeFile(GetDVDClass2(), "SI_fireflower"); DVD_FreeFile(GetDVDClass2(), "SI_iceflower"); @@ -419,6 +426,8 @@ int dScKoopatlas_c::onDelete() { levelInfoLoader.unload(); mapListLoader.unload(); + CleanUpEffectThings(); + return true; } |