fixed instant centering in shmup

This commit is contained in:
Zeno Rogue 2019-05-05 17:31:55 +02:00
parent a0cf13ac97
commit 531596f0e7
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ void mainloopiter() {
if(!shmup::on && (multi::alwaysuse || multi::players > 1) && normal)
timetowait = 0, multi::handleMulti(ticks - lastt);
if(vid.sspeed >= 5 && gmatrix.count(cwt.at) && !elliptic) {
if(vid.sspeed >= 5 && gmatrix.count(cwt.at) && !elliptic && !shmup::on) {
cwtV = gmatrix[cwt.at] * ddspin(cwt.at, cwt.spin);
if(cwt.mirrored) playerV = playerV * Mirror;
}