Skip to content

Commit

Permalink
taito/taito_f3_v.cpp: Improved line clipping effects and palette for …
Browse files Browse the repository at this point in the history
…landmakr/quizhuhu. (#10920)
  • Loading branch information
y-ack committed Mar 1, 2023
1 parent 230702d commit 440e546
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 171 deletions.
14 changes: 6 additions & 8 deletions src/mame/taito/taito_f3.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ class taito_f3_state : public driver_device
u8 *tsrc[256]{}, *tsrc_s[256]{};
int x_count[256]{};
u32 x_zoom[256]{};
u32 clip0[256]{};
u32 clip1[256]{};
u32 clip_in[256]{};
u32 clip_ex[256]{};
u16 pal_add[256]{};
};

Expand All @@ -194,12 +194,10 @@ class taito_f3_state : public driver_device
u16 alpha_level[256]{};
u16 spri[256]{};
u16 sprite_alpha[256]{};
u32 sprite_clip0[256]{};
u32 sprite_clip1[256]{};
s16 clip0_l[256]{};
s16 clip0_r[256]{};
s16 clip1_l[256]{};
s16 clip1_r[256]{};
u32 sprite_clip_in[256]{};
u32 sprite_clip_ex[256]{};
s16 clip_l[4][256]{};
s16 clip_r[4][256]{};
};

int m_game = 0;
Expand Down
Loading

0 comments on commit 440e546

Please sign in to comment.