shithub: ft²

Download patch

ref: 1373144eebc8da64685af487de9aa1cff4e43776
parent: 3fea9dd32dab91503bd948a3ac2ef0111533edb7
author: Olav Sørensen <olav.sorensen@live.no>
date: Sun Dec 29 17:49:24 EST 2024

Match starfield speed in "about screen" with FT2 in "FT2 mode"

--- a/src/ft2_about.c
+++ b/src/ft2_about.c
@@ -408,9 +408,9 @@
 	}
 	else // old FT2 about screen
 	{
-		star_a.x += 3*64;
-		star_a.y += 2*64;
-		star_a.z -= 1*64;
+		star_a.x += SCALE_VBLANK_DELTA(3*64); // 70Hz delta -> 60Hz delta
+		star_a.y += SCALE_VBLANK_DELTA(2*64);
+		star_a.z -= SCALE_VBLANK_DELTA(1*64);
 
 		fixaMatris(star_a, &starmat);
 		realStars();
--