From a69bedb033192927bf7625493a7a03aaa1a3a171 Mon Sep 17 00:00:00 2001 From: Ivan <8611739+IRBorisov@users.noreply.github.com> Date: Fri, 30 Aug 2024 18:41:45 +0300 Subject: [PATCH] Update TRSLegacyLoader.cpp --- src/io/TRSLegacyLoader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/TRSLegacyLoader.cpp b/src/io/TRSLegacyLoader.cpp index bc3991b..636215a 100644 --- a/src/io/TRSLegacyLoader.cpp +++ b/src/io/TRSLegacyLoader.cpp @@ -165,8 +165,8 @@ void LegacyCoreLoader::DoLoad(ccl::semantic::RSCore& core) { ccl::lang::ManagedText LegacyCoreLoader::LoadText() { auto rawText = ar.Load(); - details::FixOldReferences(rawText); const auto cache = ar.Load(); + details::FixOldReferences(rawText); return ccl::lang::ManagedText{ rawText, cache }; }