aboutsummaryrefslogtreecommitdiff
path: root/src/engine/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/core.cpp')
-rw-r--r--src/engine/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/core.cpp b/src/engine/core.cpp
index baba55f6..aea614d2 100644
--- a/src/engine/core.cpp
+++ b/src/engine/core.cpp
@@ -579,7 +579,7 @@ extern "C" HRESULT CoreElevate(
579 // If the elevated companion pipe isn't created yet, let's make that happen. 579 // If the elevated companion pipe isn't created yet, let's make that happen.
580 if (!pEngineState->sczBundleEngineWorkingPath) 580 if (!pEngineState->sczBundleEngineWorkingPath)
581 { 581 {
582 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->userExperience.payloads, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath); 582 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath);
583 ExitOnFailure(hr, "Failed to cache engine to working directory."); 583 ExitOnFailure(hr, "Failed to cache engine to working directory.");
584 } 584 }
585 585
@@ -678,7 +678,7 @@ extern "C" HRESULT CoreApply(
678 // Ensure the engine is cached to the working path. 678 // Ensure the engine is cached to the working path.
679 if (!pEngineState->sczBundleEngineWorkingPath) 679 if (!pEngineState->sczBundleEngineWorkingPath)
680 { 680 {
681 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->userExperience.payloads, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath); 681 hr = CacheBundleToWorkingDirectory(pEngineState->registration.sczId, pEngineState->registration.sczExecutableName, &pEngineState->section, &pEngineState->sczBundleEngineWorkingPath);
682 ExitOnFailure(hr, "Failed to cache engine to working directory."); 682 ExitOnFailure(hr, "Failed to cache engine to working directory.");
683 } 683 }
684 684