diff options
Diffstat (limited to 'src/engine/core.cpp')
| -rw-r--r-- | src/engine/core.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/engine/core.cpp b/src/engine/core.cpp index 10750be8..26e74588 100644 --- a/src/engine/core.cpp +++ b/src/engine/core.cpp | |||
| @@ -151,6 +151,12 @@ extern "C" HRESULT CoreInitialize( | |||
| 151 | // Load the catalog files as soon as they are extracted. | 151 | // Load the catalog files as soon as they are extracted. |
| 152 | hr = CatalogLoadFromPayload(&pEngineState->catalogs, &pEngineState->userExperience.payloads); | 152 | hr = CatalogLoadFromPayload(&pEngineState->catalogs, &pEngineState->userExperience.payloads); |
| 153 | ExitOnFailure(hr, "Failed to load catalog files."); | 153 | ExitOnFailure(hr, "Failed to load catalog files."); |
| 154 | |||
| 155 | hr = PathConcat(pEngineState->userExperience.sczTempDirectory, L"BootstrapperApplicationData.xml", &pEngineState->command.wzBootstrapperApplicationDataPath); | ||
| 156 | ExitOnFailure(hr, "Failed to get BootstrapperApplicationDataPath."); | ||
| 157 | |||
| 158 | hr = StrAllocString(&pEngineState->command.wzBootstrapperWorkingFolder, pEngineState->userExperience.sczTempDirectory, 0); | ||
| 159 | ExitOnFailure(hr, "Failed to copy sczBootstrapperWorkingFolder."); | ||
| 154 | } | 160 | } |
| 155 | 161 | ||
| 156 | LExit: | 162 | LExit: |
