summaryrefslogtreecommitdiff
path: root/src/System.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.c')
-rw-r--r--src/System.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/System.c b/src/System.c
index 05a9b9b..9250682 100644
--- a/src/System.c
+++ b/src/System.c
@@ -7,11 +7,12 @@
void SystemInit(void)
{
redirect_stdio_to_sio();
-#if 0
- PSX_InitEx(PSX_INIT_SAVESTATE | PSX_INIT_CD);
-#else
PSX_InitEx(0);
-#endif
SerialInit();
GfxInit();
}
+
+void SystemDeinit(void)
+{
+ PSX_DeInit();
+}