diff options
| author | eray orçunus <erayorcunus@gmail.com> | 2020-04-18 21:44:07 +0300 |
|---|---|---|
| committer | eray orçunus <erayorcunus@gmail.com> | 2020-04-18 21:44:07 +0300 |
| commit | 5320bf7964c6a5a0731a4aabf5053344e36d58a0 (patch) | |
| tree | 97cfb15e3be0d9f2dfb824a1b836942b36d69705 /src/fakerw | |
| parent | Merge pull request #472 from gennariarmando/master (diff) | |
| download | re3-5320bf7964c6a5a0731a4aabf5053344e36d58a0.tar.gz | |
RpClumpRemoveAtomic update
Diffstat (limited to 'src/fakerw')
| -rw-r--r-- | src/fakerw/fake.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fakerw/fake.cpp b/src/fakerw/fake.cpp index 03df55e2..3977007f 100644 --- a/src/fakerw/fake.cpp +++ b/src/fakerw/fake.cpp @@ -634,7 +634,7 @@ RpClump *RpClumpForAllLights(RpClump * clump, RpLightCallBack callback, void *pD RpClump *RpClumpForAllCameras(RpClump * clump, RwCameraCallBack callback, void *pData); //RpClump *RpClumpCreateSpace(const RwV3d * position, RwReal radius); RpClump *RpClumpRender(RpClump * clump) { clump->render(); return clump; } -RpClump *RpClumpRemoveAtomic(RpClump * clump, RpAtomic * atomic) { atomic->removeFromClump(); return clump; } +RpClump *RpClumpRemoveAtomic(RpClump * clump, RpAtomic * atomic) { clump->removeAtomic(atomic); return clump; } RpClump *RpClumpAddAtomic(RpClump * clump, RpAtomic * atomic) { clump->addAtomic(atomic); return clump; } //RpClump *RpClumpRemoveLight(RpClump * clump, RpLight * light); //RpClump *RpClumpAddLight(RpClump * clump, RpLight * light); |
