refactor: rename CreateGeom _mesh argument to mesh, so as to not confuse this with the pre-existing _mesh field

bulletsim
Justin Clark-Casey (justincc) 2011-07-31 00:44:23 +01:00
parent f1ce17071d
commit 454312f5bc
1 changed files with 3 additions and 3 deletions

View File

@ -1358,14 +1358,14 @@ Console.WriteLine("ZProcessTaints for " + Name);
/// </summary>
/// <param name="m_targetSpace"></param>
/// <param name="_mesh">/param>
public void CreateGeom(IntPtr m_targetSpace, IMesh _mesh)
public void CreateGeom(IntPtr m_targetSpace, IMesh mesh)
{
#if SPAM
Console.WriteLine("CreateGeom:");
#endif
if (_mesh != null)
if (mesh != null)
{
setMesh(_parent_scene, _mesh);
setMesh(_parent_scene, mesh);
}
else
{