Merge remote-tracking branch 'stella-emu/master'

This commit is contained in:
Darrell Spice, Jr 2017-04-25 17:03:38 -05:00
commit da9756343a
2 changed files with 4 additions and 3 deletions

View File

@ -80,6 +80,9 @@
the new implementation now works for the NTSC 'Dig Dug' ROM. Special the new implementation now works for the NTSC 'Dig Dug' ROM. Special
thanks for SpiceWare for the idea and modified implementation. thanks for SpiceWare for the idea and modified implementation.
* Fixed long-standing bug in 3-voice music in DPC+ bankswitching scheme;
the music now sounds much more like the real thing.
* For the Linux/UNIX port: * For the Linux/UNIX port:
- The settings directory now uses the XDG Base Directory Specification. - The settings directory now uses the XDG Base Directory Specification.
In most cases, this means that your files will now be stored in In most cases, this means that your files will now be stored in

View File

@ -525,7 +525,5 @@ inline void CartridgeCTY::updateMusicModeDataFetchers()
// Let's update counters and flags of the music mode data fetchers // Let's update counters and flags of the music mode data fetchers
for(int x = 0; x <= 2; ++x) for(int x = 0; x <= 2; ++x)
{ ; // myMusicCounters[x] += myMusicFrequencies[x] * wholeClocks;
// myMusicCounters[x] += myMusicFrequencies[x];
}
} }