Skip to content

Commit

Permalink
Decode scissorX1/scissorY1
Browse files Browse the repository at this point in the history
  • Loading branch information
cadmic committed Oct 14, 2024
1 parent dc945d2 commit b2326f5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/emulator/rsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,13 @@ static bool nFirstTime_2757 = true;
static bool nFirstTime_2796 = true;

static s32 counter;

// TODO: initialize as 0 << 2
static u16 scissorX0;
static u16 scissorY0;
static u16 scissorX1 = 0x500;
static u16 scissorY1 = 0x3C0;
static u16 scissorX1 = N64_FRAME_WIDTH << 2;
static u16 scissorY1 = N64_FRAME_HEIGHT << 2;

static u8 flagBilerp;
static u32 rdpSetTimg_w0;
static u32 rdpSetTile_w0;
Expand Down

0 comments on commit b2326f5

Please sign in to comment.