From 73446aae61650bf9ab09865ac3ff5be9720b2143 Mon Sep 17 00:00:00 2001 From: Lephe Date: Sat, 25 Sep 2021 15:59:47 +0200 Subject: [PATCH] bfile: use non-smem syscalls for Fugue Not sure how the design is internally, but only these ones can find files in subfolders. --- src/kernel/syscalls.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kernel/syscalls.S b/src/kernel/syscalls.S index 67c2356..d4175aa 100644 --- a/src/kernel/syscalls.S +++ b/src/kernel/syscalls.S @@ -138,9 +138,9 @@ _BFile_Write: _BFile_Read: syscall(0x1dac) _BFile_FindFirst: - syscall(0x1db7) + syscall(0x1db6) _BFile_FindNext: - syscall(0x1db9) + syscall(0x1db8) _BFile_FindClose: syscall(0x1dba)