aboutsummaryrefslogtreecommitdiff
path: root/src/dxvk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dxvk.c')
-rw-r--r--src/dxvk.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/dxvk.c b/src/dxvk.c
index c0f660e..9b4a5f6 100644
--- a/src/dxvk.c
+++ b/src/dxvk.c
@@ -14,10 +14,14 @@
static const struct Command dxvk_commands[] = {
{ .name = "download", .func = dxvk_download, .description = "download and install a dxvk version" },
- { .name = "remove", .func = dxvk_remove, .description = "remove a dxvk version" },
- { .name = "list", .func = dxvk_list, .description = "list available dxvk versions" },
{ .name = "install", .func = dxvk_install, .description = "run the DXVK installer" },
+ { .name = "list", .func = dxvk_list, .description = "list available dxvk versions" },
{ .name = "list-installed", .func = dxvk_installed, .description = "list installed dxvk versions" },
+ { .name = "remove", .func = dxvk_remove, .description = "remove a dxvk version" },
+};
+
+static const struct Flag dxvk_flags[] = {
+ { .name = "help", .variant = DOUBLE, .func = dxvk_help, .description = "show this message"}
};
COMMAND_GROUP_FUNC(dxvk)