X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=skaterift.c;h=6d402bfc260422a819dcff16154e075413bc6c62;hb=65de5fb65850b8eb282455d15ca7466b656c1ef8;hp=b60f2042e73f2bd6503acacd9b0df45cf588fbf3;hpb=b16b962eb8f40d33c4563b76490aab248dae4f6e;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/skaterift.c b/skaterift.c index b60f204..6d402bf 100644 --- a/skaterift.c +++ b/skaterift.c @@ -96,7 +96,9 @@ VG_STATIC void vg_load(void) /* 'systems' are completely loaded now */ strcpy( world.world_name, "maps/mp_mtzero.mdl" ); - //strcpy( world.world_name, "maps/mp_gridmap.mdl" ); +#if 0 + strcpy( world.world_name, "maps/mp_gridmap.mdl" ); +#endif world_load(); vg_console_load_autos(); } @@ -190,7 +192,9 @@ VG_STATIC void present_view_with_post_processing(void) VG_STATIC void render_player_transparent(void) { - camera small_cam; + static camera small_cam; /* DOES NOT NEED TO BE STATIC BUT MINGW + SAIS OTHERWISE */ + m4x3_copy( main_camera.transform, small_cam.transform ); small_cam.fov = main_camera.fov;