diff --git a/README.md b/README.md index 47a58f5d0d..8c73125837 100644 --- a/README.md +++ b/README.md @@ -245,6 +245,8 @@ the above locations, if desired. ``` cl_autoRecordDemo - record a new demo on each map change + (similar to cg_autoAction in other + id Tech 3 games) cl_aviFrameRate - the framerate to use when capturing video cl_aviMotionJpeg - use the mjpeg codec when capturing video cl_guidServerUniq - makes cl_guid unique for each server diff --git a/code/q3_ui/ui_demo2.c b/code/q3_ui/ui_demo2.c index 9a7fc134fd..cfdbc5d305 100644 --- a/code/q3_ui/ui_demo2.c +++ b/code/q3_ui/ui_demo2.c @@ -216,6 +216,7 @@ static void Demos_MenuInit( void ) { protocolLegacy = trap_Cvar_VariableValue("com_legacyprotocol"); protocol = trap_Cvar_VariableValue("com_protocol"); + Com_Printf("\n\n\n\n!protocol: %i\n\n\n\n", !protocol); if(!protocol) protocol = trap_Cvar_VariableValue("protocol"); if(protocolLegacy == protocol) diff --git a/code/ui/ui_main.c b/code/ui/ui_main.c index 169193766b..fb7ff1a4ce 100644 --- a/code/ui/ui_main.c +++ b/code/ui/ui_main.c @@ -2883,6 +2883,8 @@ static void UI_LoadDemos( void ) { protocolLegacy = trap_Cvar_VariableValue("com_legacyprotocol"); protocol = trap_Cvar_VariableValue("com_protocol"); + Com_Printf("\n\n\n\n!protocol: %i\n\n\n\n", !protocol); + if(!protocol) protocol = trap_Cvar_VariableValue("protocol"); if(protocolLegacy == protocol)