From 40859121b17f6788f2d2b99f7e0be1f025b16023 Mon Sep 17 00:00:00 2001 From: drjaska Date: Fri, 22 Dec 2023 19:12:29 +0200 Subject: [PATCH] change menu_cmd isdemo Now it requires a cvar intake for value to be saved into a cvar, otherwise it prints it. --- qcsrc/menu/command/menu_cmd.qc | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/qcsrc/menu/command/menu_cmd.qc b/qcsrc/menu/command/menu_cmd.qc index b6f471fbf..9c1b9d0c6 100644 --- a/qcsrc/menu/command/menu_cmd.qc +++ b/qcsrc/menu/command/menu_cmd.qc @@ -55,7 +55,7 @@ void GameCommand(string theCommand) LOG_HELP(" if is not specified it shows the list of available items in the console"); LOG_HELP(" 'dumptree' dumps the state of the menu as a tree to the console"); LOG_HELP(" 'isdemo' checks if engine is currently running a demo. If given an then 1 / 0 is placed"); - LOG_HELP(" in a cvar with that name. Otherwise _menu_isdemo cvar is written to."); + LOG_HELP(" in the cvar with that name. Otherwise without an argument the result is printed to console."); LOG_HELP("\nGeneric commands shared by all programs:"); GenericCommand_macro_help(); @@ -205,20 +205,17 @@ void GameCommand(string theCommand) if (argv(0) == "isdemo") { - if (isdemo()) + int value = isdemo(); + + if (argv(1) != "") { - if (argv(1) != "") - cvar_set(argv(1), "1"); - else - localcmd("\nset _menu_isdemo 1\n"); + cvar_set(argv(1), ftos(value)); } else { - if (argv(1) != "") - cvar_set(argv(1), "0"); - else - localcmd("\nset _menu_isdemo 0\n"); + print(sprintf("%d\n", value)); } + return; } -- 2.39.2