From 46b9010b767f1639e715386bc99706d54dceb04a Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Sun, 4 Oct 2020 15:30:58 +0200 Subject: [PATCH] Warn about speedrun mode --- main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.c b/main.c index 843a550..d07b64d 100644 --- a/main.c +++ b/main.c @@ -461,6 +461,10 @@ int main(int argc, char *argv[]) { }; wl_list_init(&ctx.outputs); +#ifdef SPEEDRUN + fprintf(stderr, "warning: speedrun mode enabled\n"); +#endif + int opt; while ((opt = getopt(argc, argv, "hT:t:g:d:l:L:")) != -1) { switch (opt) {