From 85cb1bbb119488dd54f636edec2843ad22b32b37 Mon Sep 17 00:00:00 2001 From: ? Date: Tue, 26 Feb 2019 12:29:27 +0100 Subject: [PATCH] 3D:: no more autocentering if vid.sspeed <= -5 --- hypgraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypgraph.cpp b/hypgraph.cpp index 552422a5..a19a8126 100644 --- a/hypgraph.cpp +++ b/hypgraph.cpp @@ -1039,7 +1039,7 @@ void centerpc(ld aspd) { crystal::centerrug(aspd); #endif - if(shmup::on && DIM == 3) { + if(shmup::on && DIM == 3 && vid.sspeed > -5) { transmatrix at = cpush(2, -vid.yshift) * ggmatrix(shmup::pc[0]->base) * shmup::pc[0]->at; View = inverse(at) * View; return;