Fixed byref variable pointer from rcbasic_build dev generator

This commit is contained in:
n00b
2024-09-16 22:20:09 -04:00
parent 526478b618
commit a5aedb1fa7
11 changed files with 2547 additions and 2515 deletions

View File

@@ -98,8 +98,13 @@ bool rc_net_init()
return true;
}
bool rc_net_quit()
void rc_net_quit()
{
if(rc_socket_set)
{
SDLNet_FreeSocketSet(rc_socket_set);
rc_socket_set = NULL;
}
SDLNet_Quit();
}