Rotate planetary view over planet smoothly
[mercenary-reloaded.git] / src / mercenary / main.c
index 62beb7e..edd88cc 100644 (file)
@@ -64,6 +64,7 @@ static int config_debug_transparent = 0;
 static int config_debug_opengl = 0;
 /* render improvements */
 static int config_improve_extend_roads = 1;    /* set to 1 to extend roads */
+static int config_improve_smooth_planets = 1;  /* set to 1 to rotate planets smoothly */
 
 #define CPU_SPEED      7093790.0;
 
@@ -367,7 +368,7 @@ static void main_loop(void)
                        frame_render = 0;
                        /* start capturing for improved graphics */
                        if (render_improved)
-                               render_capture_start(config_fov, config_improve_extend_roads, config_debug_transparent);
+                               render_capture_start(config_fov, config_improve_extend_roads, config_improve_smooth_planets, config_debug_transparent);
 
                        /* execute until the rendered image is ready (wait for VBL) */
                        cycle_count = 0;