Previous 199869 Revisions Next

r32367 Wednesday 24th September, 2014 at 23:46:07 UTC by Alex Jackson
Fix compile (nw)
[src/mame/drivers]artmagic.c

trunk/src/mame/drivers/artmagic.c
r32366r32367
11311131{
11321132   decrypt_ultennis();
11331133   m_is_stoneball = 0;
1134   m_protection_handler = ultennis_protection;
1134   m_protection_handler = &artmagic_state::ultennis_protection;
11351135
11361136   /* additional (protection?) hack */
11371137   m_maincpu->space(AS_PROGRAM).install_read_handler(0x300000, 0x300001, read16_delegate(FUNC(artmagic_state::ultennis_hack_r),this));
r32366r32367
11421142{
11431143   decrypt_cheesech();
11441144   m_is_stoneball = 0;
1145   m_protection_handler = cheesech_protection;
1145   m_protection_handler = &artmagic_state::cheesech_protection;
11461146}
11471147
11481148
r32366r32367
11501150{
11511151   decrypt_ultennis();
11521152   m_is_stoneball = 1; /* blits 1 line high are NOT encrypted, also different first pixel decrypt */
1153   m_protection_handler = stonebal_protection;
1153   m_protection_handler = &artmagic_state::stonebal_protection;
11541154}
11551155
11561156DRIVER_INIT_MEMBER(artmagic_state,shtstar)
r32366r32367
11581158   /* wrong */
11591159   decrypt_ultennis();
11601160   m_is_stoneball =0;
1161   m_protection_handler = stonebal_protection;
1161   m_protection_handler = &artmagic_state::stonebal_protection;
11621162}
11631163
11641164

Previous 199869 Revisions Next


© 1997-2024 The MAME Team