mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- Fix bug from preceding commit: OPL chips were forced stereo. Also, DiskWriterIO::OPLinit()
should return the number of initialized chips, not just 0 and 1. SVN r3943 (trunk)
This commit is contained in:
parent
df1e802412
commit
1d81162d8f
2 changed files with 2 additions and 2 deletions
|
@ -1587,7 +1587,7 @@ public:
|
|||
/* init global tables */
|
||||
OPL_initalize(&Chip);
|
||||
|
||||
Chip.IsStereo = true;
|
||||
Chip.IsStereo = stereo;
|
||||
|
||||
Reset();
|
||||
}
|
||||
|
|
|
@ -189,7 +189,7 @@ int DiskWriterIO::OPLinit(uint numchips, bool dontcare)
|
|||
CurChip = 0;
|
||||
OPLchannels = OPL2CHANNELS * numchips;
|
||||
OPLwriteInitState();
|
||||
return 1;
|
||||
return numchips;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
Loading…
Reference in a new issue