[Atsoft-commit] CVS: dcgen/main generator.c,1.11,1.12
Brought to you by:
atani
|
From: Mike D. <at...@us...> - 2002-02-18 15:52:26
|
Update of /cvsroot/atsoft/dcgen/main
In directory usw-pr-cvs1:/tmp/cvs-serv19167
Modified Files:
generator.c
Log Message:
Added PAL modes back into the init code for main().
Index: generator.c
===================================================================
RCS file: /cvsroot/atsoft/dcgen/main/generator.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** generator.c 14 Feb 2002 05:56:27 -0000 1.11
--- generator.c 18 Feb 2002 15:52:23 -0000 1.12
***************
*** 65,73 ****
}
kos_init_all(IRQ_ENABLE|THD_ENABLE, romdisk_boot);
pvr_init(¶ms);
- //#ifdef PAL_DREAMCAST
- // vid_init(DM_640x480_PAL_IL, PM_RGB565);
- // ta_init_defaults();
- //#endif
init_ta_text();
--- 65,74 ----
}
kos_init_all(IRQ_ENABLE|THD_ENABLE, romdisk_boot);
+ #ifdef PAL_DREAMCAST
+ vid_init(DM_640x480_PAL_IL, PM_RGB565);
+ #else
+ vid_init(DM_640x480_NTSC_IL, PM_RGB565);
+ #endif
pvr_init(¶ms);
init_ta_text();
|