|
From: kosmirror <kos...@us...> - 2025-11-18 20:04:16
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via 0ef0a6e931f9d973637d5908b68337a8c276e699 (commit)
from 6216f5e6795f6aec3578b4387a05976e6d804327 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0ef0a6e931f9d973637d5908b68337a8c276e699
Author: dfchil <da...@fa...>
Date: Tue Nov 18 21:04:01 2025 +0100
dcload: Fix wrong command sent for dcload_lseek (#1241)
-----------------------------------------------------------------------
Summary of changes:
kernel/arch/dreamcast/hardware/dcload.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/arch/dreamcast/hardware/dcload.c b/kernel/arch/dreamcast/hardware/dcload.c
index 8e50acf8..4c68f9a2 100644
--- a/kernel/arch/dreamcast/hardware/dcload.c
+++ b/kernel/arch/dreamcast/hardware/dcload.c
@@ -73,7 +73,7 @@ int dcload_chmod(const char *path, mode_t mode) {
}
off_t dcload_lseek(uint32_t hnd, off_t offset, int whence) {
- return (off_t)dcload_syscall(DCLOAD_READ, (void *)hnd, (void *)offset, (void *)whence);
+ return (off_t)dcload_syscall(DCLOAD_LSEEK, (void *)hnd, (void *)offset, (void *)whence);
}
int dcload_fstat(int fildes, dcload_stat_t *buf) {
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|