summaryrefslogtreecommitdiffstats
path: root/DTCompatibility.c
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2019-07-29 23:34:02 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2019-07-29 23:34:02 +0200
commite69c3ee25a0b2f02228511f7cd030784c2de346e (patch)
treecf27c416c52f3b00beaa30ce167810c3718a5aba /DTCompatibility.c
parente774734fd697f6741cb8c52f249f2f2f7adb2fad (diff)
downloadSystem.c4g-e69c3ee25a0b2f02228511f7cd030784c2de346e.tar.gz
System.c4g-e69c3ee25a0b2f02228511f7cd030784c2de346e.zip
Replace arr[GetLength(arr)] with arr[]
Diffstat (limited to 'DTCompatibility.c')
-rw-r--r--DTCompatibility.c2
1 files changed, 1 insertions, 1 deletions
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)