Update pxMultiActor.cpp

Fixed PhysX compile issue on VS2010 ("'FS' : is not a class or namespace name")

In reference to http://www.garagegames.com/community/forums/viewthread/135499
This commit is contained in:
Robert Pierce 2013-11-01 11:36:26 -04:00
parent b1b7a66d5b
commit 44b5b85b2c

View file

@ -570,7 +570,7 @@ bool PxMultiActorData::preload( bool server, String &errorBuffer )
// Register for file change notification to reload the collection // Register for file change notification to reload the collection
if ( server ) if ( server )
FS::AddChangeNotification( physXStream, this, &PxMultiActorData::_onFileChanged ); Torque::FS::AddChangeNotification( physXStream, this, &PxMultiActorData::_onFileChanged );
return true; return true;
} }