diff options
Diffstat (limited to 'src/burn/engine/manifest.cpp')
-rw-r--r-- | src/burn/engine/manifest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/burn/engine/manifest.cpp b/src/burn/engine/manifest.cpp index c0d67c19..266d1987 100644 --- a/src/burn/engine/manifest.cpp +++ b/src/burn/engine/manifest.cpp | |||
@@ -104,7 +104,7 @@ static HRESULT ParseFromXml( | |||
104 | } | 104 | } |
105 | } | 105 | } |
106 | 106 | ||
107 | // parse built-in condition | 107 | // parse built-in condition |
108 | hr = ConditionGlobalParseFromXml(&pEngineState->condition, pixeBundle); | 108 | hr = ConditionGlobalParseFromXml(&pEngineState->condition, pixeBundle); |
109 | ExitOnFailure(hr, "Failed to parse global condition."); | 109 | ExitOnFailure(hr, "Failed to parse global condition."); |
110 | 110 | ||
@@ -113,8 +113,8 @@ static HRESULT ParseFromXml( | |||
113 | ExitOnFailure(hr, "Failed to parse variables."); | 113 | ExitOnFailure(hr, "Failed to parse variables."); |
114 | 114 | ||
115 | // parse user experience | 115 | // parse user experience |
116 | hr = UserExperienceParseFromXml(&pEngineState->userExperience, pixeBundle); | 116 | hr = BootstrapperApplicationParseFromXml(&pEngineState->userExperience, pixeBundle); |
117 | ExitOnFailure(hr, "Failed to parse user experience."); | 117 | ExitOnFailure(hr, "Failed to parse bootstrapper application."); |
118 | 118 | ||
119 | // parse extensions | 119 | // parse extensions |
120 | hr = BurnExtensionParseFromXml(&pEngineState->extensions, &pEngineState->userExperience.payloads, pixeBundle); | 120 | hr = BurnExtensionParseFromXml(&pEngineState->extensions, &pEngineState->userExperience.payloads, pixeBundle); |