aboutsummaryrefslogtreecommitdiff
path: root/src/system/ps1
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-07-07 02:44:08 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-07-07 02:45:23 +0200
commitc9dee333fe4883f73d73f04db73227c8d23aafb8 (patch)
treed168266b936ac457be127fc5e6b4b1fa9133c9c9 /src/system/ps1
parent251bd41c4499521baa2c810155f85a7fcb528116 (diff)
downloadrts-c9dee333fe4883f73d73f04db73227c8d23aafb8.tar.gz
Implement system_can_exit
Diffstat (limited to 'src/system/ps1')
-rw-r--r--src/system/ps1/src/init.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/system/ps1/src/init.c b/src/system/ps1/src/init.c
index a644e47..4c30fbd 100644
--- a/src/system/ps1/src/init.c
+++ b/src/system/ps1/src/init.c
@@ -6,6 +6,11 @@
volatile bool vblank_set;
+bool system_can_exit(void)
+{
+ return false;
+}
+
static void vblank(void *const arg)
{
vblank_set = true;