ps1/net.c: return 0 on net_init

Even if the implementation is not finished yet, this will avoid the
program from crashing on startup.
This commit is contained in:
Xavier Del Campo Romero 2022-09-23 04:29:00 +02:00
parent 8435b3f5fd
commit 6f5058c584
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ struct net_socket *net_server(const union net_server *const c)
int net_init(void)
{
return -1;
return 0;
}
void net_deinit(void)