overhauls rendering + redoes some of widescreen/dynamic sizing + misc fixes (#4668)

Co-authored-by: VM_USER <VM_USER>
This commit is contained in:
silicons
2022-11-17 17:31:54 -06:00
committed by GitHub
co-authored by VM_USER <VM_USER>
parent 798902257c
commit bc5e0940a2
50 changed files with 1475 additions and 754 deletions
@@ -54,6 +54,12 @@
/proc/_ispath(path, type)
return ispath(path, type)
/proc/_json_encode(list/L)
return json_encode(L)
/proc/_json_decode(json)
return json_decode(json)
/proc/_length(E)
return length(E)
@@ -153,9 +159,17 @@
/proc/_sin(X)
return sin(X)
/proc/_list2params(L)
return list2params(L)
/proc/_list_construct(...)
. = args.Copy()
/proc/_list_construct_assoc(...)
. = list()
for(var/i in 1 to (args.len - 1) step 2)
.[args[i]] = args[i+1]
/proc/_list_add(list/L, ...)
if (args.len < 2)
return