mirror of
https://github.com/zeldaret/oot
synced 2026-05-27 16:13:31 -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
35 lines
771 B
C
35 lines
771 B
C
#include "global.h"
|
|
|
|
OSViMode osViModeMpalLan1 = {
|
|
0x1E, // type
|
|
{
|
|
// comRegs
|
|
0x311E, // ctrl
|
|
SCREEN_WIDTH, // width
|
|
0x4651E39, // burst
|
|
0x20D, // vSync
|
|
0x40C11, // hSync
|
|
0xC190C1A, // leap
|
|
0x6C02EC, // hStart
|
|
0x200, // xScale
|
|
0, // vCurrent
|
|
},
|
|
{ // fldRegs
|
|
{
|
|
// [0]
|
|
0x280, // origin
|
|
0x400, // yScale
|
|
0x2501FF, // vStart
|
|
0xE0204, // vBurst
|
|
2, // vIntr
|
|
},
|
|
{
|
|
// [1]
|
|
0x280, // origin
|
|
0x400, // yScale
|
|
0x2501FF, // vStart
|
|
0xE0204, // vBurst
|
|
2, // vIntr
|
|
} },
|
|
};
|