Index: shader_test.c
===================================================================
--- shader_test.c	(revision 568)
+++ shader_test.c	(revision 569)
@@ -22,7 +22,7 @@
 if(raydium_key[GLUT_KEY_F2]) { raydium_projection_fov*=(1.04); raydium_window_view_update(); }
 
 raydium_clear_frame();
-raydium_camera_freemove(1);
+raydium_camera_freemove(RAYDIUM_CAMERA_FREEMOVE_NORMAL);
 raydium_ode_draw_all(0);
 raydium_rendering_finish();
 }
de==RAYDIUM_LOG_MODE_STERR)
+    stream=stderr;
+
 if(raydium_file_log_time)
     {
-    printf("[%.6f] %s\n",elapsed,str);
+    if(stream) fprintf(stream,"[%.6f] %s\n",elapsed,str);
     if(raydium_log_file) fprintf(raydium_log_file,"[%.6f] %s\n",elapsed,str);
     }
 else
     {
-    printf("Raydium: %s\n",str);
+    if(stream) fprintf(stream,"Raydium: %s\n",str);
     if(raydium_log_file) fprintf(raydium_log_file,"%s\n",str);
     }