1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Also allow for a potential Grauw conversion in Yamaha land.

This commit is contained in:
Thomas Harte 2023-05-19 13:43:28 -04:00
parent d117a44069
commit c75efb7dac

View File

@ -86,7 +86,8 @@ struct YamahaFetcher {
std::array<Event, size> result{};
size_t index = 0;
for(int c = 0; c < 1368; c++) {
const auto event = GeneratorT::event(c);
// Specific personality doesn't matter here; both Yamahas use the same internal timing.
const auto event = GeneratorT::event(from_internal<Personality::V9938, Clock::Grauw>(c));
if(!event) {
continue;
}