2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Real camera fixes

Corrects popping issues in Kemo but doesn't screw up Teledahn at the same
time... Magical special casing :(
This commit is contained in:
2012-04-12 21:52:04 -04:00
parent cba9f459e8
commit d2a1350e8b

View File

@ -1685,13 +1685,14 @@ void plVirtualCam1::PopCamera(plCameraModifier1* pCam)
if (fCameraStack.size() <= 1)
return;
// Crazy Special Casing Turd: [based on some Cyan crap]
// is it the current camera AND the same camera we would otherwise switch to?
if (pCam==GetCurrentStackCamera() && pCam == fCameraStack[fCameraStack.size() - 2])
// if so, pop off the dupe if we're going to the age default... otherwise, go crazy.
if (fCameraStack.size() > 2 && pCam == GetCurrentStackCamera())
{
// pop but don't transition to a new camera
// or do anything else:
int theDupe = fCameraStack.size() - 1;
if (pCam == fCameraStack[theDupe] && theDupe == 2)
fCameraStack.pop_back();
return;
}
// are we mouse-looking?