Remove stray semi-colon from DMAPI [DMDeploy]

This commit is contained in:
Dominion
2023-04-17 11:26:17 -04:00
parent fb447938bf
commit 633b628f2d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
// tgstation-server DMAPI
#define TGS_DMAPI_VERSION "6.4.0"
#define TGS_DMAPI_VERSION "6.4.1"
// All functions and datums outside this document are subject to change with any version and should not be relied on.
+1 -1
View File
@@ -6,7 +6,7 @@
var/chunk_count
var/list/chunk_requests
for(chunk_count = 2; !chunk_requests; ++chunk_count);
for(chunk_count = 2; !chunk_requests; ++chunk_count)
var/max_chunk_size = -round(-(data_length / chunk_count))
if(max_chunk_size > limit)
continue