X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=network.h;h=d7c9be0ad713b3c41de6b197b46c3502fe32b5d0;hb=5ecf9cca8b5b9bf876d7e7c7fde03d5b187bb42b;hp=6783769fda2667528754896679b162336d360e68;hpb=d00b1df8f80e4714dc2f9aa2189d242bb4d09a2f;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/network.h b/network.h index 6783769..d7c9be0 100644 --- a/network.h +++ b/network.h @@ -315,9 +315,9 @@ static void network_update(void) static double last_update = 0.0; poll_connection(); - if( vg_time > (last_update + 60.0) ) + if( vg.time > (last_update + 60.0) ) { - last_update = vg_time; + last_update = vg.time; if( steam_app_ticket_length ) { @@ -329,7 +329,7 @@ static void network_update(void) } } - if( vg_time > (last_update + 10.0) && + if( vg.time > (last_update + 10.0) && (cremote_state == k_ESteamNetworkingConnectionState_Connected )) { vg_warn( "Connected to server but no return... disconnecting\n" );