aboutsummaryrefslogtreecommitdiff
path: root/src/dxvk.c
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2021-02-12 14:34:12 +0100
committerJan200101 <sentrycraft123@gmail.com>2021-03-26 18:53:26 +0100
commit63e5e87d71e42f6f252b97468d2e4e7f3b95277a (patch)
treeceeb342a032b3b588f9c8cba55d895a5494e1b33 /src/dxvk.c
parentc7f30c98540de3ce8ad0a34b9e162801de0e257b (diff)
downloadpolecat-63e5e87d71e42f6f252b97468d2e4e7f3b95277a.tar.gz
polecat-63e5e87d71e42f6f252b97468d2e4e7f3b95277a.zip
a chunk of changes
- replace bool with ints, - give enums a t suffix - fix edge case in variable parser where the end of the buffer is not null - make parseVar take an allocated variable list instead of a static one - set the first argument of all tasks to be the prefix - correctly parse chmodx directives - add GAMEDIR variable to the variable list - output known variables on installer info - implement basic task handling - check if file exists before redownloading - remove debug function - make noprogress argument into progress and convert it to int
Diffstat (limited to 'src/dxvk.c')
-rw-r--r--src/dxvk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dxvk.c b/src/dxvk.c
index 6b05ebb..c0f660e 100644
--- a/src/dxvk.c
+++ b/src/dxvk.c
@@ -64,7 +64,7 @@ COMMAND(dxvk, download)
fprintf(stderr, "Downloading %s...\n", name);
- archive = downloadToRam(json_object_get_string(temp), 0L);
+ archive = downloadToRam(json_object_get_string(temp), 1);
if (archive)
{
fprintf(stderr, "Extracting %s\n", name);