rogueviz::smoothcam:: spinEdge_full called if needed

This commit is contained in:
Zeno Rogue 2023-05-15 02:12:57 +02:00
parent fccf07a07d
commit d5064db846
1 changed files with 5 additions and 0 deletions

View File

@ -371,6 +371,9 @@ void snap_to_center() {
}
void show() {
/* might not be changed automatically */
if(vid.fixed_yz) spinEdge_full();
cmode = side ? sm::SIDE : 0;
gamescreen();
draw_crosshair();
@ -630,6 +633,8 @@ void handle_animation(ld t) {
c_up_dist = geo_dist(pts[0], pts[2]);
}
if(vid.fixed_yz) spinEdge_full();
transmatrix T = View * inverse(last_view_comp);
last_view_comp = View;