aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2020-09-06 13:55:00 +0200
committerJan200101 <sentrycraft123@gmail.com>2020-09-06 13:55:00 +0200
commitd07122673c9c66b41cf311ff4c9d1abed49fc669 (patch)
tree1818f7660aae60e9fbc4d328653da15a59292e78 /src/main.c
parenta0253e25c45c66083b751d075cf9a73aa0a183f4 (diff)
downloadpolecat-d07122673c9c66b41cf311ff4c9d1abed49fc669.tar.gz
polecat-d07122673c9c66b41cf311ff4c9d1abed49fc669.zip
fix incorrectly hiding unfinished commands
its ifdef not ifndef
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index c8b506c..9b506ca 100644
--- a/src/main.c
+++ b/src/main.c
@@ -11,7 +11,7 @@
const static struct Command main_commands[] = {
{ .name = "wine", .func = wine, .description = "manage wine versions" },
-#ifndef DEBUG
+#ifdef DEBUG
{ .name = "dxvk", .func = dxvk, .description = "manage dxvk versions" },
#endif
{ .name = "lutris", .func = lutris, .description = "run lutris instraller"},