X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=network.h;h=6783769fda2667528754896679b162336d360e68;hb=d00b1df8f80e4714dc2f9aa2189d242bb4d09a2f;hp=a9b5c8f3423b79093053abca15af6ddba098a361;hpb=86dbcd5796ed674ca9433cce1ace8bef322cd121;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/network.h b/network.h index a9b5c8f..6783769 100644 --- a/network.h +++ b/network.h @@ -1,3 +1,8 @@ +/* + * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved + * All trademarks are property of their respective owners + */ + #ifndef NETWORK_H #define NETWORK_H @@ -18,7 +23,7 @@ static void network_init(void); static void network_update(void); /* Call it at shutdown */ -static void network_end(void); +static void network_end(void*_); /* * Can buffer up a bunch of these by calling many times, they will be @@ -320,7 +325,7 @@ static void network_update(void) } else { - vg_log( "Not making remote connection; app ticket not gotten\n" ); + vg_low( "Not making remote connection; app ticket not gotten\n" ); } } @@ -344,7 +349,7 @@ static void network_init(void) } } -static void network_end(void) +static void network_end(void*_) { /* TODO: Fire off any buffered highscores that need to be setn */ if( cremote_state == k_ESteamNetworkingConnectionState_Connected || @@ -359,7 +364,7 @@ static void network_end(void) static void network_init(void){} static void network_update(void){} -static void network_end(void){} +static void network_end(void*_){} #endif /* SR_NETWORKED */ #endif /* NETWORK_H */