diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2025-01-03 02:38:42 -0600 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2025-01-03 14:14:57 -0600 |
| commit | 2e0af3410a7ac2a2a8d20c06583ededb3cd76ca4 (patch) | |
| tree | 9c2a72daee985529fb01e0938baa913c75cbeae3 /src | |
| parent | 9b0c5c7420045d9a401152386bd1554ab9dab46e (diff) | |
Fixed missing crc on soundfonts
Diffstat (limited to 'src')
| -rw-r--r-- | src/factories/naudio/v1/AudioTableFactory.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/factories/naudio/v1/AudioTableFactory.cpp b/src/factories/naudio/v1/AudioTableFactory.cpp index 6c5bbe5..1a9b367 100644 --- a/src/factories/naudio/v1/AudioTableFactory.cpp +++ b/src/factories/naudio/v1/AudioTableFactory.cpp @@ -170,6 +170,7 @@ std::optional<std::shared_ptr<IParsedData>> AudioTableFactory::parse(std::vector } } + entry.crc = crc; AudioContext::tables[type][addr].crc = crc; entries.push_back(entry); } |
