mirror of
https://github.com/holub/mame
synced 2025-06-09 22:33:00 +03:00
darius2 darius2d warriorb: fix: stereo output channels are inverted (#7320)
This commit is contained in:
parent
44f810f77d
commit
dc4de5b722
@ -373,6 +373,7 @@ void ninjaw_state::pancontrol_w(offs_t offset, u8 data)
|
|||||||
{
|
{
|
||||||
filter_volume_device *flt = nullptr;
|
filter_volume_device *flt = nullptr;
|
||||||
offset &= 3;
|
offset &= 3;
|
||||||
|
offset ^= 1;
|
||||||
|
|
||||||
switch (offset)
|
switch (offset)
|
||||||
{
|
{
|
||||||
|
@ -182,6 +182,7 @@ void warriorb_state::pancontrol_w(offs_t offset, u8 data)
|
|||||||
{
|
{
|
||||||
filter_volume_device *flt = nullptr;
|
filter_volume_device *flt = nullptr;
|
||||||
offset &= 3;
|
offset &= 3;
|
||||||
|
offset ^= 1;
|
||||||
|
|
||||||
switch (offset)
|
switch (offset)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user