|
From: darcagn <da...@us...> - 2023-08-10 18:28:27
|
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 efc5a3e4cb7c90b03449abc5572e08b1bcf84895 (commit)
via 1bbf0d1a7186498ff787cfbc3ef0de742ef54b60 (commit)
from 90e09d81d7c1f9dc3f31290a8fff94e4d5ff304a (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 efc5a3e4cb7c90b03449abc5572e08b1bcf84895
Merge: 90e09d8 1bbf0d1
Author: Donald Haase <qu...@ya...>
Date: Thu Aug 10 14:22:31 2023 -0400
Merge pull request #265 from KallistiOS/fix-p4-macro
Fix: MEM_AREA_P4_MASK should be MEM_AREA_P4_BASE
commit 1bbf0d1a7186498ff787cfbc3ef0de742ef54b60
Author: darc <da...@pr...>
Date: Thu Aug 10 10:42:46 2023 -0500
Fix: MEM_AREA_P4_MASK should be MEM_AREA_P4_BASE
-----------------------------------------------------------------------
Summary of changes:
kernel/arch/dreamcast/include/dc/pvr.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/arch/dreamcast/include/dc/pvr.h b/kernel/arch/dreamcast/include/dc/pvr.h
index d3efe2d..090923d 100644
--- a/kernel/arch/dreamcast/include/dc/pvr.h
+++ b/kernel/arch/dreamcast/include/dc/pvr.h
@@ -1663,7 +1663,7 @@ typedef uint32 pvr_dr_state_t;
*/
#define pvr_dr_target(vtx_buf_ptr) \
({ (vtx_buf_ptr) ^= 32; \
- (pvr_vertex_t *)(MEM_AREA_P4_MASK | (vtx_buf_ptr)); \
+ (pvr_vertex_t *)(MEM_AREA_P4_BASE | (vtx_buf_ptr)); \
})
/** \brief Commit a primitive written into the Direct Rendering target address.
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|