aboutsummaryrefslogtreecommitdiff
path: root/src/system/ps1
diff options
context:
space:
mode:
Diffstat (limited to 'src/system/ps1')
-rw-r--r--src/system/ps1/src/init.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/system/ps1/src/init.c b/src/system/ps1/src/init.c
index 4c30fbd..4ad12c2 100644
--- a/src/system/ps1/src/init.c
+++ b/src/system/ps1/src/init.c
@@ -1,4 +1,5 @@
#include <gfx.h>
+#include <net.h>
#include <sfx.h>
#include <system.h>
#include <psx.h>
@@ -20,13 +21,14 @@ void system_deinit(void)
{
gfx_deinit();
sfx_deinit();
+ net_deinit();
}
int system_init(void)
{
SetVBlankHandler(vblank);
- if (gfx_init() || sfx_init())
+ if (gfx_init() || sfx_init() || net_init())
return -1;
return 0;