diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2019-07-29 23:34:02 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2019-07-29 23:34:02 +0200 |
| commit | e69c3ee25a0b2f02228511f7cd030784c2de346e (patch) | |
| tree | cf27c416c52f3b00beaa30ce167810c3718a5aba /DTCompatibility.c | |
| parent | e774734fd697f6741cb8c52f249f2f2f7adb2fad (diff) | |
| download | System.c4g-e69c3ee25a0b2f02228511f7cd030784c2de346e.tar.gz System.c4g-e69c3ee25a0b2f02228511f7cd030784c2de346e.zip | |
Replace arr[GetLength(arr)] with arr[]
Diffstat (limited to 'DTCompatibility.c')
| -rw-r--r-- | DTCompatibility.c | 2 |
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)
|
