From 83ffe90202e1b2004c6a94b8fc23e23b80f7ccde Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 8 Jul 2012 13:37:27 +0000 Subject: [PATCH] fix compiler dumbness --- panda/src/physics/physical.I | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/physics/physical.I b/panda/src/physics/physical.I index 8ac35b29fe..e46bb228fd 100644 --- a/panda/src/physics/physical.I +++ b/panda/src/physics/physical.I @@ -148,7 +148,7 @@ get_physical_node() const { //////////////////////////////////////////////////////////////////// INLINE NodePath Physical:: get_physical_node_path() const { - return NodePath(_physical_node); + return NodePath((PandaNode*) _physical_node); } ////////////////////////////////////////////////////////////////////