diff options
Diffstat (limited to 'contrib/vmap_debugger')
-rw-r--r-- | contrib/vmap_debugger/ModelContainerView.cpp | 4 | ||||
-rw-r--r-- | contrib/vmap_debugger/ModelContainerView.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/vmap_debugger/ModelContainerView.cpp b/contrib/vmap_debugger/ModelContainerView.cpp index c29666c0bca..fa6b2b40b29 100644 --- a/contrib/vmap_debugger/ModelContainerView.cpp +++ b/contrib/vmap_debugger/ModelContainerView.cpp @@ -451,7 +451,7 @@ namespace VMAP //==================================================================== - Vector3 ModelContainerView::convertPositionToMangosRep(float x, float y, float z) const { + Vector3 ModelContainerView::convertPositionToTrinityRep(float x, float y, float z) const { float pos[3]; pos[0] = z; pos[1] = x; @@ -490,7 +490,7 @@ namespace VMAP #if 0 i_App->defaultController.getPosition(); Vector3 pos = i_App->defaultController.getPosition(); - Vector3 pos2 = convertPositionToMangosRep(pos.x, pos.y, pos.z); + Vector3 pos2 = convertPositionToTrinityRep(pos.x, pos.y, pos.z); //Vector3 pos3 = iVMapManager->convertPositionToInternalRep(pos2.x, pos2.y, pos2.z); //pos3 = iVMapManager->convertPositionToInternalRep(pos2.x, pos2.y, pos2.z); diff --git a/contrib/vmap_debugger/ModelContainerView.h b/contrib/vmap_debugger/ModelContainerView.h index 28d992a0c16..ff41f7d1784 100644 --- a/contrib/vmap_debugger/ModelContainerView.h +++ b/contrib/vmap_debugger/ModelContainerView.h @@ -51,7 +51,7 @@ namespace VMAP bool iPosSent; Array<Command> iPrevLoadCommands; private: - Vector3 convertPositionToMangosRep(float x, float y, float z) const; + Vector3 convertPositionToTrinityRep(float x, float y, float z) const; public: ModelContainerView(const G3D::GApp::Settings& settings); |