mirror of
https://github.com/zeldaret/oot
synced 2026-05-25 15:25:21 -04:00
174af7384d
* cleanup libultra * fixes - use quotes instead of <> for includes - add macros for zelda specific thread priorities - fix Makefile - properly format the remaining pfs structs * fix button macros + add CHECK_BTN_ANY/CHECK_BTN_ALL * remove ULTRA_ABS * fix includes * update z_player.c/z_lib.c + run format.sh * merge upstream/master * fix include in En_Goroiwa * fix includes
33 lines
737 B
C
33 lines
737 B
C
#include "global.h"
|
|
|
|
OSViMode osViModeFpalLan1 = {
|
|
0x2C, // type
|
|
{
|
|
// comRegs
|
|
0x311E, // ctrl
|
|
SCREEN_WIDTH, // width
|
|
0x4541E3A, // burst
|
|
0x271, // vSync
|
|
0x170C69, // hSync
|
|
0xC6F0C6D, // leap
|
|
0x800300, // hStart
|
|
0x200, // xScale
|
|
0 // vCurrent
|
|
},
|
|
{ // fldRegs
|
|
{
|
|
0x280, // origin
|
|
0x400, // yScale
|
|
0x2F0269, // vStart
|
|
0x9026B, // vBurst
|
|
2, // vIntr
|
|
},
|
|
{
|
|
0x280, // origin
|
|
0x400, // yScale
|
|
0x2F0269, // vStart
|
|
0x9026B, // vBurst
|
|
2 // vIntr
|
|
} },
|
|
};
|