From c75efb7dac72ff1d105f9460ef3e822d372dcdf3 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 19 May 2023 13:43:28 -0400 Subject: [PATCH] Also allow for a potential Grauw conversion in Yamaha land. --- Components/9918/Implementation/Storage.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Components/9918/Implementation/Storage.hpp b/Components/9918/Implementation/Storage.hpp index f0a0611b3..70a4bcd92 100644 --- a/Components/9918/Implementation/Storage.hpp +++ b/Components/9918/Implementation/Storage.hpp @@ -86,7 +86,8 @@ struct YamahaFetcher { std::array 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(c)); if(!event) { continue; }