Skip to content

Commit 7466b82

Browse files
committed
Readme
1 parent c1cae1f commit 7466b82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ var Helper: IToolsApiHelper := TToolsApiHelper.Create;
8181
var ProjectHelper := Helper.Project;
8282
8383
// Get the project options to figure out the platforms used, the active platform, etc.
84-
var ProjectOptions: IOTAProjectOptionsConfigurations := Helper.ProjectConfigurations;
84+
var ProjectOptions: IOTAProjectOptionsConfigurations := ProjectHelper.ProjectConfigurations;
8585
```
8686

8787
#### Build configurations
@@ -94,7 +94,7 @@ var Helper: IToolsApiHelper := TToolsApiHelper.Create;
9494
var ProjectHelper := Helper.Project;
9595
9696
// Get the base build configuration
97-
var BaseBuildConfig: IToolsApiBuildConfiguration := Helper.BuildConfigurations.Base;
97+
var BaseBuildConfig: IToolsApiBuildConfiguration := ProjectHelper.BuildConfigurations.Base;
9898
9999
// Get the search paths
100100
var SearchPaths: TArray<string> := BaseBuildConfig.SearchPaths;

0 commit comments

Comments
 (0)