Skip to content

Commit

Permalink
(mapper342) Silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
LibretroAdmin committed Feb 26, 2024
1 parent bc618f9 commit dd947aa
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/mappers/mapper342.c
Original file line number Diff line number Diff line change
Expand Up @@ -1772,12 +1772,10 @@ static DECLFR(MAFRAM) {

/* Mapper #90 - JY */
if (mapper == 13) {
if ((A == 0x5800)) {
if (A == 0x5800)
return (mul1 * mul2) & 0xFF;
}
if ((A == 0x5801)) {
if (A == 0x5801)
return ((mul1 * mul2) >> 8) & 0xFF;
}
}

/* MMC5 */
Expand Down

0 comments on commit dd947aa

Please sign in to comment.