From e69c3ee25a0b2f02228511f7cd030784c2de346e Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Mon, 29 Jul 2019 23:34:02 +0200 Subject: Replace arr[GetLength(arr)] with arr[] --- DTCompatibility.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'DTCompatibility.c') diff --git a/DTCompatibility.c b/DTCompatibility.c index d3ae922..1246ee6 100644 --- a/DTCompatibility.c +++ b/DTCompatibility.c @@ -12,7 +12,7 @@ global func RequestHostFeature(string feature) { if(!HaveHostFeature(feature) || global func AnnounceHostFeature(string feature) { hostFeatures || (hostFeatures = []); - hostFeatures[GetLength(hostFeatures)] = feature; + hostFeatures[] = feature; } global func HaveHostFeature(string feature) -- cgit v1.2.3-54-g00ecf