summaryrefslogtreecommitdiff
path: root/indra/newview/llpathfindingcharacter.h
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-02-13 18:39:41 -0800
committerTodd Stinson <stinson@lindenlab.com>2012-02-13 18:39:41 -0800
commit9181229b34e1374f1b564fed637088bca4535ae0 (patch)
tree642386d1906aebe075ff46c5063ba6ee2023422a /indra/newview/llpathfindingcharacter.h
parent76959fdb455e5fc3f08b0e1f61f13f14c0d87303 (diff)
Updating the pathfinding character initialization to match the new data type for CPU time.
Diffstat (limited to 'indra/newview/llpathfindingcharacter.h')
-rw-r--r--indra/newview/llpathfindingcharacter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpathfindingcharacter.h b/indra/newview/llpathfindingcharacter.h
index a7a17bc490..9b0a7bae30 100644
--- a/indra/newview/llpathfindingcharacter.h
+++ b/indra/newview/llpathfindingcharacter.h
@@ -48,7 +48,7 @@ public:
inline const std::string& getName() const {return mName;};
inline const std::string& getDescription() const {return mDescription;};
inline const std::string getOwnerName() const {return mOwnerName.getCompleteName();};
- inline U32 getCPUTime() const {return mCPUTime;};
+ inline F32 getCPUTime() const {return mCPUTime;};
inline const LLVector3& getLocation() const {return mLocation;};
protected:
@@ -59,7 +59,7 @@ private:
std::string mDescription;
LLUUID mOwnerUUID;
LLAvatarName mOwnerName;
- U32 mCPUTime;
+ F32 mCPUTime;
LLVector3 mLocation;
};