Notices & clean
[carveJwlIkooP6JGAAIwe30JlM.git] / network.h
index ef3455de14f77f873f8425a1e7d46405f57da949..6783769fda2667528754896679b162336d360e68 100644 (file)
--- 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
@@ -38,7 +43,6 @@ static void network_submit_highscore( u32 trackid, u16 points, u16 time );
 static u8 steam_app_ticket[ 1024 ];
 static u32 steam_app_ticket_length;
 static int network_name_update = 1;
-static int network_scores_updated = 0;
 
 static HSteamNetConnection cremote;
 static ESteamNetworkingConnectionState cremote_state = 
@@ -321,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" );
          }
       }
 
@@ -345,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 ||
@@ -360,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 */