Skip to content

Commit 5eb2552

Browse files
committed
gpu_neon: rm some unused stuff
1 parent 22da0db commit 5eb2552

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plugins/gpu_neon/psx_gpu/psx_gpu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ typedef struct
175175

176176
u8 triangle_winding;
177177

178-
u8 display_area_draw_enable;
178+
u8 unused;
179179

180180
u8 current_texture_page;
181181
u8 last_8bpp_texture_page;

plugins/gpu_neon/psx_gpu/psx_gpu_parse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ u32 gpu_parse(psx_gpu_struct *psx_gpu, u32 *list, u32 size, u32 *ex_regs,
687687
else
688688
psx_gpu->render_state_base &= ~RENDER_STATE_DITHER;
689689

690-
psx_gpu->display_area_draw_enable = (list[0] >> 10) & 0x1;
690+
//psx_gpu->display_area_draw_enable = (list[0] >> 10) & 0x1;
691691
ex_regs[1] = list[0];
692692
break;
693693

@@ -1620,7 +1620,7 @@ u32 gpu_parse_enhanced(psx_gpu_struct *psx_gpu, u32 *list, u32 size, u32 *ex_reg
16201620
else
16211621
psx_gpu->render_state_base &= ~RENDER_STATE_DITHER;
16221622

1623-
psx_gpu->display_area_draw_enable = (list[0] >> 10) & 0x1;
1623+
//psx_gpu->display_area_draw_enable = (list[0] >> 10) & 0x1;
16241624
ex_regs[1] = list[0];
16251625
break;
16261626

0 commit comments

Comments
 (0)