BulletSim: add requestor's ID to post taint detail log message.
parent
0e4a06edf9
commit
6ade1c6c76
|
@ -987,10 +987,11 @@ public sealed class BSScene : PhysicsScene, IPhysicsParameters
|
|||
// will replace any previous operation by the same object.
|
||||
public void PostTaintObject(String ident, uint ID, TaintCallback callback)
|
||||
{
|
||||
string uniqueIdent = ident + "-" + ID.ToString();
|
||||
string IDAsString = ID.ToString();
|
||||
string uniqueIdent = ident + "-" + IDAsString;
|
||||
lock (_taintLock)
|
||||
{
|
||||
_postTaintOperations[uniqueIdent] = new TaintCallbackEntry(uniqueIdent, callback);
|
||||
_postTaintOperations[uniqueIdent] = new TaintCallbackEntry(IDAsString, uniqueIdent, callback);
|
||||
}
|
||||
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue