mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-06 10:38:16 +00:00
Also allow for a potential Grauw conversion in Yamaha land.
This commit is contained in:
parent
d117a44069
commit
c75efb7dac
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user