aboutsummaryrefslogtreecommitdiffstats
path: root/Game
diff options
context:
space:
mode:
authors_alexander <s_alexander@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-03-06 00:42:09 +0000
committers_alexander <s_alexander@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-03-06 00:42:09 +0000
commit70f7e822749b933d9a91be6f11fa108633872f15 (patch)
treedea0e9d3709cc14b3272df148d2613b6235f10d3 /Game
parent8bf5d685ad3b8ff361f4d435c982d6e3e8fc3396 (diff)
downloadusdx-70f7e822749b933d9a91be6f11fa108633872f15.tar.gz
usdx-70f7e822749b933d9a91be6f11fa108633872f15.tar.xz
usdx-70f7e822749b933d9a91be6f11fa108633872f15.zip
fixed compile errors with delphi
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@914 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game')
-rw-r--r--Game/Code/Classes/UIni.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Classes/UIni.pas b/Game/Code/Classes/UIni.pas
index 50c121e9..91ff9077 100644
--- a/Game/Code/Classes/UIni.pas
+++ b/Game/Code/Classes/UIni.pas
@@ -380,7 +380,7 @@ var
end;
// get index of value V in array a, returns -1 if value is not in array
- function GetArrayIndex(var A: array of String; V: String; caseInsensitiv: Boolean = False): Integer;
+ function GetArrayIndex(const A: array of String; V: String; caseInsensitiv: Boolean = False): Integer;
var
i: Integer;
begin