darius2 darius2d warriorb: fix: stereo output channels are inverted (#7320)

This commit is contained in:
eito 2020-10-06 02:18:13 +09:00 committed by GitHub
parent 44f810f77d
commit dc4de5b722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -373,6 +373,7 @@ void ninjaw_state::pancontrol_w(offs_t offset, u8 data)
{
filter_volume_device *flt = nullptr;
offset &= 3;
offset ^= 1;
switch (offset)
{

View File

@ -182,6 +182,7 @@ void warriorb_state::pancontrol_w(offs_t offset, u8 data)
{
filter_volume_device *flt = nullptr;
offset &= 3;
offset ^= 1;
switch (offset)
{