1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-03-12 16:19:43 +00:00

sol:: solmul

This commit is contained in:
Zeno Rogue
2019-07-25 12:14:18 +02:00
parent 2c3341bf67
commit 816320da94
4 changed files with 14 additions and 8 deletions

View File

@@ -1285,10 +1285,10 @@ void centerpc(ld aspd) {
aspd *= (1+R+(shmup::on?1:0));
if(R < aspd) {
View = gpushxto0(H) * View;
View = solmul(gpushxto0(H), View);
}
else
View = rspintox(H) * xpush(-aspd) * spintox(H) * View;
View = solmul(rspintox(H) * xpush(-aspd) * spintox(H), View);
fixmatrix(View);
spinEdge(aspd);