fix clang error

This commit is contained in:
coco875
2025-01-05 23:51:19 +01:00
parent 177cefe79f
commit 9ad95be03b
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ void networking_disconnect(void);
/* Start Game */
void spawn_network_players(f32*, f32*, f32);
s32 network_all_players_loaded(void);
void network_all_players_loaded(void);
void set_course(const char* data);
void networking_start_session(const char* data);
+2 -2
View File
@@ -53,7 +53,7 @@ void network_cup_vote(uint32_t course) {
void set_course(const char* data) {
if (data != NULL) {
//SetCup(data[0]);
// SetCup(data[0]);
gCupSelection = data[0];
// gCurrentCourseId = gCupCourseOrder[gCupSelection][COURSE_ONE];
//! @todo SetCourse();
@@ -135,7 +135,7 @@ void networking_start_session(const char* data) {
}
// Wait for all players to load
s32 network_all_players_loaded() {
void network_all_players_loaded() {
if (gNetwork.gameStarted) {
return;
}