1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-27 01:14:52 +00:00

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

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;