mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
tAlgorythm fed namespace T3D for better library interoperability. resulted in the need to specify usage in... a few places.
This commit is contained in:
parent
83449bbc06
commit
491a7dcfdd
20 changed files with 70 additions and 69 deletions
|
|
@ -85,7 +85,7 @@ void ForestWindMgr::addEmitter( ForestWindEmitter *emitter )
|
|||
|
||||
void ForestWindMgr::removeEmitter( ForestWindEmitter *emitter )
|
||||
{
|
||||
ForestWindEmitterList::iterator iter = find( mEmitters.begin(),
|
||||
ForestWindEmitterList::iterator iter = T3D::find( mEmitters.begin(),
|
||||
mEmitters.end(),
|
||||
emitter );
|
||||
|
||||
|
|
@ -161,7 +161,7 @@ void ForestWindMgr::processTick()
|
|||
PROFILE_SCOPE( ForestWindMgr_AdvanceTime_SwapSources );
|
||||
AssertFatal( mPrevSources->isEmpty(), "prev sources not empty!" );
|
||||
|
||||
swap( mSources, mPrevSources );
|
||||
T3D::swap( mSources, mPrevSources );
|
||||
|
||||
AssertFatal( mSources->isEmpty(), "swap failed!" );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue