mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Python file names and SynchedObj SDL state names => plString
This commit is contained in:
@ -455,7 +455,7 @@ void plMaxNode::CheckSynchOptions(plSynchedObject* so)
|
||||
if (gUserPropMgr.GetUserPropStringList(this, "DontPersist", num, sdataList))
|
||||
{
|
||||
for(i=0;i<num;i++)
|
||||
so->AddToSDLExcludeList(sdataList[i]); // disable a type of persistence
|
||||
so->AddToSDLExcludeList((const char *)sdataList[i]); // disable a type of persistence
|
||||
}
|
||||
}
|
||||
|
||||
@ -469,7 +469,7 @@ void plMaxNode::CheckSynchOptions(plSynchedObject* so)
|
||||
if (gUserPropMgr.GetUserPropStringList(this, "Volatile", num, sdataList))
|
||||
{
|
||||
for(i=0;i<num;i++)
|
||||
so->AddToSDLVolatileList(sdataList[i]); // make volatile a type of persistence
|
||||
so->AddToSDLVolatileList((const char *)sdataList[i]); // make volatile a type of persistence
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user