From 9c49b57580c96b8b7bb208853d3f45c7fbd8e368 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sun, 28 Jun 2015 21:34:29 -0400 Subject: [PATCH] Fix argument ordering on fixed camera targets --- Sources/Plasma/FeatureLib/pfCamera/plCameraBrain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/FeatureLib/pfCamera/plCameraBrain.cpp b/Sources/Plasma/FeatureLib/pfCamera/plCameraBrain.cpp index 4297f284..f7f691cc 100644 --- a/Sources/Plasma/FeatureLib/pfCamera/plCameraBrain.cpp +++ b/Sources/Plasma/FeatureLib/pfCamera/plCameraBrain.cpp @@ -1567,7 +1567,7 @@ void plCameraBrain1_Fixed::Update(bool forced) fTargetMatrix = fCamera->GetTarget()->GetCoordinateInterface()->GetLocalToWorld(); hsVector3 view; hsVector3 up; - fTargetMatrix.GetAxis(0, &view, &up); + fTargetMatrix.GetAxis(0, &up, &view); fGoal = fTargetMatrix.GetTranslate(); if (fTargetPoint) fPOAGoal = fTargetPoint->GetBrain()->GetGoal();