From: ljsebald <ljs...@us...> - 2023-12-04 04:21:04
|
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 b9b86efd2f32900f3c1725304c53d1ad462ec079 (commit) from 15ade8d666d0c167fd5a5d53fefbc7569ac05ae4 (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 b9b86efd2f32900f3c1725304c53d1ad462ec079 Author: Andy Barajas <and...@gm...> Date: Sun Dec 3 20:20:43 2023 -0800 Comment out line that was cause no video on non vga setups (#402) ----------------------------------------------------------------------- Summary of changes: kernel/arch/dreamcast/hardware/pvr/pvr_init_shutdown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/arch/dreamcast/hardware/pvr/pvr_init_shutdown.c b/kernel/arch/dreamcast/hardware/pvr/pvr_init_shutdown.c index ebc59ad..72f8e9c 100644 --- a/kernel/arch/dreamcast/hardware/pvr/pvr_init_shutdown.c +++ b/kernel/arch/dreamcast/hardware/pvr/pvr_init_shutdown.c @@ -188,7 +188,7 @@ int pvr_init(pvr_init_params_t *params) { PVR_SET(PVR_TEXTURE_MODULO, 0x00000000); /* stride width */ PVR_SET(PVR_FOG_DENSITY, 0x0000ff07); /* fog density */ PVR_SET(PVR_HPOS_IRQ, PVR_GET(PVR_BORDER_X) << 16); /* HBLANK settings (fire on line 0 at the start of the line) */ - PVR_SET(PVR_VPOS_IRQ, PVR_GET(PVR_BORDER_Y)); /* VBLANK settings (VBLANK begin at start, VBLANK end at end) */ + //PVR_SET(PVR_VPOS_IRQ, PVR_GET(PVR_BORDER_Y)); /* VBLANK settings (VBLANK begin at start, VBLANK end at end) */ PVR_SET(PVR_UNK_0118, 0x00008040); /* M */ /* Initialize PVR DMA */ hooks/post-receive -- A pseudo Operating System for the Dreamcast. |