Update TRSLegacyLoader.cpp

This commit is contained in:
Ivan 2024-08-30 18:41:45 +03:00
parent d456220006
commit a69bedb033

View File

@ -165,8 +165,8 @@ void LegacyCoreLoader::DoLoad(ccl::semantic::RSCore& core) {
ccl::lang::ManagedText LegacyCoreLoader::LoadText() {
auto rawText = ar.Load<std::string>();
details::FixOldReferences(rawText);
const auto cache = ar.Load<std::string>();
details::FixOldReferences(rawText);
return ccl::lang::ManagedText{ rawText, cache };
}